-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
29 lines (26 loc) · 953 Bytes
/
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
[project]
name = "aotc"
version = "0.0.1"
description = "Standalone AI Workload Library For Reproducibility"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [{name = "Map Perf Tooling Team", email = "[email protected]"}]
maintainers = []
# Dependencies for `aotc` that aren't related to the framework
dependencies = [
"numpy<2.0",
"omegaconf",
"pandas",
"tensorboard"
]
####################################################################
# NOTE: this does not include workload specific dependencies:
# e.g. pytorch, tensorflow, jax, xla, etc
# These are expected to exist in the base-docker containers.
####################################################################
[tool.setuptools.package-data]
"aotc" = ["**/*.py", "**/*.yaml", "**/*.yaml.j2", "**/*.conf", "**/*.sh", "**/*.conf.j2"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["aotc"]
[tool.distutils.bdist_wheel]
universal = true