-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathpyproject.toml
41 lines (38 loc) · 1.09 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
[project]
name = "tensorstore"
requires-python = ">= 3.10"
dynamic = ["version"]
dependencies = [
"numpy>=1.22.0",
"ml_dtypes>=0.3.1",
]
description = "Read and write large, multi-dimensional arrays"
readme = "README.md"
authors = [
{ name = "TensorStore Team", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Topic :: Software Development :: Libraries",
]
[project.urls]
Repository = "https://github.com/google/tensorstore"
Issues = "https://github.com/google/tensorstore/issues"
Documentation = "https://google.github.io/tensorstore"
[build-system]
requires = [
"setuptools>=64",
"wheel",
"setuptools_scm>=8.1.0",
"numpy>=2.0.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
# It would be nice to include the commit hash in the version, but that
# can't be done in a PEP 440-compatible way.
version_scheme = "no-guess-dev"
# Test PyPI does not support local versions.
local_scheme = "no-local-version"
fallback_version = "0.0.0"