-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.42 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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "src/c3/_version.py"
[project]
name = "claimed-c3"
dynamic = ["version"]
# test pypi version:
# version = "0.2.15"
authors = [
{ name="The CLAIMED authors", email="claimed-framework@proton.me"},
]
maintainers = [
{ name="Romeo Kienzler", email="claimed-framework@proton.me"},
{ name="Benedikt Blumenstiel"},
]
description = "The CLAIMED component compiler (C3) generates container images, KFP components, Kubernetes jobs, CWL Tasks, CLI applications"
readme = "README.md"
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
keywords = ["CLAIMED", "compiler", "KubeFlow", "Kubernetes"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
'nbconvert >= 7.9.2',
'ipython >= 8.16.1',
'traitlets >= 5.11.2',
'pandas',
]
[project.urls]
"Homepage" = "https://github.com/claimed-framework/c3"
"Bug Tracker" = "https://github.com/claimed-framework/c3/issues"
[project.scripts]
c3_create_operator = "c3.create_operator:main"
c3_create_containerless_operator = "c3.create_containerless_operator:main"
c3_create_gridwrapper = "c3.create_gridwrapper:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"c3.templates" = ["*"]