-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Expand file tree
/
Copy pathpyproject.toml
More file actions
143 lines (132 loc) · 3.95 KB
/
Copy pathpyproject.toml
File metadata and controls
143 lines (132 loc) · 3.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
[build-system]
requires = ["setuptools>=77.0.3", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/c3/_version.py"
[project]
name = "claimed"
version = "0.6.0"
description = "The CLAIMED framework (now bundling terratorch-iterate)"
readme = "README.md"
requires-python = ">=3.11"
license = { file = "LICENSE" }
keywords = ["CLAIMED", "compiler", "KubeFlow", "Kubernetes", "terratorch", "iterate", "Optuna", "HPO"]
authors = [
{ name = "The CLAIMED authors", email = "claimed-framework@proton.me" },
{ name = "Carlos Gomes" },
{ name = "Daniela Szwarcman" },
{ name = "Francesc Marti Escofet" },
{ name = "Leonardo Pondian Tizzei", email = "ltizzei@br.ibm.com" },
{ name = "Naomi Simumba" },
{ name = "Paolo Fraccaro" },
{ name = "Romeo Kienzler" },
]
maintainers = [
{ name = "Romeo Kienzler", email = "claimed-framework@proton.me" },
{ name = "Benedikt Blumenstiel" },
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
# ── claimed core ────────────────────────────────────────────────────────
"nbconvert>=7.9.2",
"ipython>=8.16.1",
"traitlets>=5.11.2",
"pandas",
"boto3",
"s3fs",
"tqdm>=4.66.3",
"toml",
# ── iterate core ─────────────────────────────────────────────
"terratorch>=1.1.0",
"requests>=2.32.0",
"Jinja2>=3.1.5",
"urllib3>=2.2.2",
"sqlparse>=0.5.0",
"scikit-learn>=1.5.0",
"pillow>=10.3.0",
"aiohttp>=3.9.4",
"werkzeug>=3.0.3",
"pytorch-lightning>=2.3.3",
"more-itertools",
"importlib-metadata",
"numpy",
"mlflow",
"optuna",
"types-tabulate",
"gputil",
"asyncio",
"opencv-python-headless",
"configspace",
"optuna-integration",
"psutil",
"tabulate>=0.9.0",
"torch",
"seaborn",
]
[project.urls]
Homepage = "https://github.com/claimed-framework/claimed"
"Bug Tracker" = "https://github.com/claimed-framework/claimed/issues"
[project.optional-dependencies]
dev = [
"ruff",
"flake8",
"mkdocs-material",
"mkdocstrings[python]",
"mike",
"tox",
"pre-commit",
]
test = [
"coverage",
"pytest",
"pytest-cov",
"deepdiff",
]
utility = ["geobench"]
nvidia = ["pynvml"]
# Used by iterate2's PostgreSQL coordinator plugin and by the claimed job
# coordinator (`claimed propagate_jobs` / `claimed work_jobs`) for Postgres URLs.
postgresql = ["psycopg2-binary>=2.9"]
amd = ["pyrsmi"]
[project.scripts]
# claimed
c3_create_operator = "c3.create_operator:main"
c3_create_containerless_operator = "c3.create_containerless_operator:main"
c3_create_gridwrapper = "c3.create_gridwrapper:main"
claimed = "claimed.claimed:main"
# terratorch-iterate (now bundled under claimed.iterate)
iterate-classic = "claimed.iterate.main:main"
iterate = "claimed.iterate.iterate2:main"
# All sources live under src/: c3*, claimed* (claimed.iterate is included by claimed*).
[tool.setuptools.packages.find]
where = ["src"]
include = ["c3*", "claimed*"]
[tool.setuptools.package-data]
"c3.templates" = ["*"]
"scripts" = ["*"]
[tool.black]
target-version = ["py312"]
line-length = 88
skip-string-normalization = true
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 88
force_to_top = ["rdkit", "scikit-learn"]
[tool.mypy]
check_untyped_defs = true
disable_error_code = ["import-untyped"]
[[tool.mypy.overrides]]
module = "pytest.*"
ignore_missing_imports = true