-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (36 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
43 lines (36 loc) · 1.08 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
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "ml-exchange"
version = "0.3.8"
description = "Machine Learning Exchange (MLX) library"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "Apache-2.0" }
authors = [
{ name = "The Machine Learning Exchange Authors", email = "terratorch@ibm.com" }
]
keywords = ["ml", "registry", "package"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
dependencies = [
"claimed",
"boto3",
]
[project.urls]
"Homepage" = "https://github.com/machine-learning-exchange/mlx"
"Source" = "https://github.com/machine-learning-exchange/mlx"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["tests*"]
[tool.setuptools]
package-dir = { "" = "src" }
# If you use package-data, configure here or use MANIFEST.in if needed
[tool.setuptools_scm]
# use git tags like v1.2.3 to generate versions
version_scheme = "post-release"
local_scheme = "no-local-version"