-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathpyproject.toml
More file actions
106 lines (89 loc) · 2.43 KB
/
Copy pathpyproject.toml
File metadata and controls
106 lines (89 loc) · 2.43 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
[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 = "Common Metadata eXchange framework (CMX) and Collective Mind automation framework (CM)"
requires-python = ">=3.7"
dependencies = [
"pyyaml",
"requests",
"setuptools",
"wheel",
"giturlparse",
"tabulate"
]
keywords = [
"cmind",
"cm",
"cmx",
"cmx-mlcflow",
"cmx-mlcr",
"common metadata exchange",
"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
include-package-data = true
[tool.setuptools.package-data]
cmind = ["repo/*",
"repo/automation/automation/*",
"repo/automation/ckx/*",
"repo/automation/mlc/*",
"repo/automation/mlcr/*",
"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"
Documentation = "https://docs.mlcommons.org/ck"
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]
cmx = "cmind.cli:runx"
cmind = "cmind.cli:runx"
cm = "cmind.cli:run"
cmxr = "cmind.cli:run_legacy_mlcr"
cmlcr = "cmind.cli:run_legacy_mlcr"
cr = "cmind.cli:run_legacy_mlcr"
cmlc = "cmind.cli:run_legacy_mlc"
cmr = "cmind.cli:run_script"
cmrd = "cmind.cli:docker_script"
cmg = "cmind.cli:gui_script"
cme = "cmind.cli:run_experiment"
flextask = "cmind.cli:run_flex_task"
ft = "cmind.cli:run_flex_task"