forked from mlcommons/mlcflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (45 loc) · 1.24 KB
/
pyproject.toml
File metadata and controls
52 lines (45 loc) · 1.24 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlcflow"
version = "1.1.20"
description = "An automation interface tailored for CPU/GPU benchmarking"
authors = [
{ name = "MLCommons", email = "systems@mlcommons.org" }
]
license = { file = "LICENSE.md" }
readme = "README.md"
requires-python = ">=3.7"
keywords = ["mlc", "mlcflow", "pypi", "package", "automation"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests",
"pyyaml",
"giturlparse",
"colorama"
]
[project.urls]
Homepage = "https://github.com/mlcommons/mlcflow"
Documentation = "https://docs.mlcommons.org/mlcflow"
Repository = "https://github.com/mlcommons/mlcflow"
Issues = "https://github.com/mlcommons/mlcflow/issues"
[tool.setuptools]
packages = ["mlc"]
py-modules = []
#include-package-data = true
#[tool.setuptools.package-data]
# This includes the config.yaml file
#"mlc" = ["config.yaml"]
[project.scripts]
mlc = "mlc.main:main"
mlcr = "mlc.main:mlcr"
mlcrr = "mlc.main:mlcrr"
mlcd = "mlc.main:mlcd"
mlce = "mlc.main:mlce"
mlct = "mlc.main:mlct"
mlcp = "mlc.main:mlcp"