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
68 lines (60 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (60 loc) · 1.65 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlcflow"
dynamic = ["version"]
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",
"filelock",
"packaging"
]
[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.dynamic]
version = {file = "VERSION"}
[tool.setuptools]
packages = ["mlc", "automation", "automation.script"]
py-modules = []
include-package-data = true
[tool.setuptools.package-data]
"automation" = ["COPYRIGHT.txt"]
"automation.script" = ["meta.json", "README.md"]
[project.scripts]
mlc = "mlc.main:main"
mlcflow = "mlc.main:main"
mlcr = "mlc.main:mlcr"
mlcrr = "mlc.main:mlcrr"
mlcd = "mlc.main:mlcd"
mlca = "mlc.main:mlca"
mlce = "mlc.main:mlce"
mlct = "mlc.main:mlct"
mlcp = "mlc.main:mlcp"
mlcre = "mlc.main:mlcre"
mlcrd = "mlc.main:mlcrd"
mlcsr = "mlc.main:mlcsr"
mlcse = "mlc.main:mlcse"
mlcsd = "mlc.main:mlcsd"
mlcsa = "mlc.main:mlcsa"
mlcrs = "mlc.main:mlcrs"
mlcres = "mlc.main:mlcres"
mlcrse = "mlc.main:mlcrse"