-
Notifications
You must be signed in to change notification settings - Fork 114
/
pyproject.toml
94 lines (76 loc) · 2 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# Developer(s): Grigori Fursin
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "cmind"
authors = [
{name = "Grigori Fursin", email = "grigori.fursin@ctuning.org"}
]
maintainers = [
{name = "Grigori Fursin", email = "grigori.fursin@ctuning.org"}
]
description = "Collective Mind automation framework (CM)"
requires-python = ">=3.7"
dependencies = [
"pyyaml",
"requests",
"setuptools",
"wheel",
"giturlparse"
]
keywords = [
"cmind",
"cm",
"cmx",
"collective mind",
"automation",
"portability",
"reusability",
"mlops",
"devops",
"vmlops",
"api",
"cli"
]
license = {text = "Apache 2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dynamic = ["readme", "version"]
[tool.setuptools.dynamic]
readme = {file = "README.md", content-type = "text/markdown"}
version = {attr = "cmind.__version__"}
[tool.setuptools]
zip-safe = false
[tool.setuptools.package-data]
cmind = ["repo/*",
"repo/automation/automation/*",
"repo/automation/ckx/*",
"repo/automation/core/*",
"repo/automation/core/cm_60cb625a46b38610/*",
"repo/automation/repo/*"
]
[tool.setuptools.packages.find]
where = ["."]
include = ["cmind"]
exclude = ["docs", "docs.*", "tests", "tests.*"]
[project.urls]
Homepage = "https://cKnowledge.org"
Repository = "https://github.com/mlcommons/ck/tree/master/cm"
Issues = "https://github.com/mlcommons/ck/issues"
Changelog = "https://github.com/mlcommons/ck/blob/master/cm/CHANGES.md"
[project.scripts]
cmind = "cmind.cli:run"
cm = "cmind.cli:run"
cmx = "cmind.cli:runx"
cmr = "cmind.cli:run_script"
cmrd = "cmind.cli:docker_script"
cmg = "cmind.cli:gui_script"
cme = "cmind.cli:run_experiment"