forked from microsoft/MLOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
66 lines (60 loc) · 2.11 KB
/
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
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
[build-system]
requires = ["setuptools>64", "setuptools-scm>=8.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mlos-viz"
description = "Visualization Python interface for benchmark automation and optimization results."
keywords = [
"autotuning",
"benchmarking",
"optimization",
"systems",
"visualization",
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"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",
]
license = { "text" = "MIT" }
requires-python = ">=3.8"
authors = [
{ name = "Microsoft", email = "[email protected]" },
]
maintainers = [
{ name = "Microsoft", email = "[email protected]" },
]
dynamic = [
"readme", # urls get dynamically mutated by the build process
"version", # managed by setuptools_scm
# managed in combination with version from setuptools_scm
"dependencies",
"optional-dependencies",
]
[project.urls]
Documentation = "https://microsoft.github.io/MLOS/source_tree_docs/mlos_viz/"
Repository = "https://github.com/microsoft/MLOS/"
Issues = "https://github.com/microsoft/MLOS/issues"
"Package Source" = "https://github.com/microsoft/MLOS/tree/main/mlos_viz/"
# Tell setuptools_scm to use the root directory for git info.
# Note: when setuptools_scm is involved we also need to use MANIFEST.in to include/exclude files.
[tool.setuptools_scm]
root = ".."
# Tell setuptools where to find the package.
[tool.setuptools.packages.find]
exclude = ["*.tests", "*.tests.*"]
[tool.setuptools.package-data]
mlos_viz = ["py.typed", "**/*.pyi"]
[tool.distutils.bdist_wheel]
# Command option bdist_wheel.universal is not defined
#universal = 1
# https://github.com/pypa/wheel/issues/582
py-limited-api = "cp38"