-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CM/CMX v3.4.0: added pyproject.toml to install CM and deprecated setu…
- Loading branch information
Showing
14 changed files
with
137 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.