-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.27 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[project]
name = "wikimedia"
description = "Tools to work with Wikimedia's dump files"
readme = "README.md"
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [
{name = "Mark Newman", email = "mark@trinetteandmark.com" }
]
maintainers = [
{name = "Mark Newman", email = "mark@trinetteandmark.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic"
]
requires-python = ">=3.11"
dependencies = [
"progressbar2>=3.51.4,<4.0.0",
"mwparserfromhell>=0.6.4,<0.7.0",
"mwxml>=0.3.3,<0.4.0"
]
[project.urls]
"Homepage" = "https://github.com/TextCorpusLabs/wikimedia"
"Bug Reports" = "https://github.com/TextCorpusLabs/wikimedia/issues"
"Source" = "https://github.com/TextCorpusLabs/wikimedia"
[project.scripts]
wikimedia = "wikimedia.__main__:main"
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "wikimedia.__init__.__version__"}