-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
80 lines (63 loc) · 1.59 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "tatm"
version = "0.2.1"
description = ""
authors = [
{ name = "Kempner Institute at Harvard University", email = "kempner-research-engineering@g.harvard.edu" }
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = "^3.10"
dependencies = [
"click (>=8.1.7,<9.0.0)",
"datasets (>=3.0.1,<4.0.0)",
"tokenizers>=0.20.0",
"ray[default] (>=2.34.0,<3.0.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"omegaconf (>=2.3.0,<3.0.0)",
"torch (>=2.4.1,<3.0.0)",
"requests (>=2.32.3,<3.0.0)",
"aiohttp>=3.10.11",
"pillow (>=11.0.0,<12.0.0)",
"openmetadata-ingestion==1.5.12",
"zstandard (>=0.23.0,<0.24.0)"
]
[project.scripts]
tatm = "tatm:cli"
[tool.poetry]
packages = [{include = "tatm", from = "src"}]
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
flake8 = "^7.1.1"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
sphinx = "^8.0.2"
myst-parser = "^4.0.0"
isort = "^5.13.2"
sphinx_rtd_theme = "^3.0.1"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
black = "^24.8.0"
flake8 = "^7.1.1"
pytest = "^8.3.2"
pytest-cov = "^5.0.0"
isort = "^5.13.2"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^8.0.2"
myst-parser = "^4.0.0"
sphinx_rtd_theme = "^3.0.1"
[tool.isort]
profile = "black"
skip = ["scripts/metadata/load_open_metadata_backend.py"]