-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (58 loc) · 1.79 KB
/
pyproject.toml
File metadata and controls
67 lines (58 loc) · 1.79 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[build-system]
requires = ["setuptools>=75.3.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mtdata"
dynamic = ["version"]
description = "mtdata is a tool to download datasets for machine translation"
readme = "README.md"
#license = {text = "Apache-2.0"}
#license-files = [ "LICENSE" ] # twine complaints about this;
license-files = [] #TODO: revisit this after twine is fixed
requires-python = ">=3.10"
authors = [
{ name = "Thamme Gowda", email = "tgowdan@gmail.com" }
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Utilities",
"Topic :: Text Processing",
"Topic :: Text Processing :: General",
"Topic :: Text Processing :: Filters",
"Topic :: Text Processing :: Linguistic",
"Programming Language :: Python :: 3 :: Only"
]
keywords = [
"machine translation",
"datasets",
"NLP",
"natural language processing",
"computational linguistics"
]
dependencies = [
"requests~=2.32",
"rich~=14.0",
"portalocker~=3.2",
"pybtex~=0.25",
"ruamel.yaml~=0.18"
]
[project.urls]
homepage = "https://github.com/thammegowda/mtdata"
documentation = "https://github.com/thammegowda/mtdata"
repository = "https://github.com/thammegowda/mtdata"
#changelog = ""
[tool.setuptools.packages.find]
include = ["mtdata*"] # ["*"] by default
exclude = ["tests*", "tmp*", "build*", "dist*", "crawler*", "*.egg-info*"]
[project.optional-dependencies]
hf = ["datasets>=4.0.0"]
xlsx = ["openpyxl>=3.1.0"]
test = [ "pytest", "pytest-cov[all]", "black", "isort", "mypy"]
[project.scripts]
mtdata = "mtdata.__main__:main"
mtdata-iso = "mtdata.iso.__main__:main"
mtdata-bcp47 = "mtdata.iso.bcp47:main"
mtdata-map = "mtdata.map:main"
[tool.setuptools.dynamic]
version = {attr = "mtdata.__version__"}