-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
102 lines (87 loc) · 2.81 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["scikit-build-core", "setuptools_scm>=8"]
build-backend = "scikit_build_core.setuptools.build_meta"
[project]
name = "uarray"
dynamic = ["version"]
description = "Array interface object for Python with pluggable backends and a multiple-dispatch mechanism for defining down-stream functions"
readme = "README.md"
dependencies = []
maintainers = [{ name = "Hameer Abbasi", email = "[email protected]" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
keywords = ["uarray", "scipy", "multiple-dispatch"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Typing :: Typed",
]
[tool.setuptools_scm]
version_file = "src/uarray/_version.py"
[tool.scikit-build]
wheel.packages = ["src/uarray"]
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
sdist.include = ["src/package/_version.py"]
[project.urls]
Documentation = "https://uarray.org/"
Source = "https://github.com/Quansight-Labs/uarray/"
Repository = "https://github.com/Quansight-Labs/uarray.git"
"Issue Tracker" = "https://github.com/Quansight-Labs/uarray/issues"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx_rtd_theme",
]
tests = [
"pytest>=3.5",
"pytest-flake8",
"pytest-cov",
"mypy>=0.930",
]
optional = []
all = [
"uarray[docs]",
"uarray[tests]",
"uarray[optional]",
]
[tool.mypy]
show_error_codes = true
no_implicit_reexport = true
disallow_any_unimported = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
disallow_any_unimported = false
[tool.cibuildwheel]
build = "{cp3{10..13}-*,pp310-*}"
build-frontend = "build"
free-threaded-support = true
test-command = "pip install -r {project}/requirements/tests.txt && pytest --pyargs uarray"
[tool.cibuildwheel.macos]
archs = ["universal2"]
[tool.cibuildwheel.config-settings]
"cmake.verbose" = true
"logging.level" = "INFO"
[tool.pixi.project]
channels = ["conda-forge"]
platforms = ["osx-arm64"]
[tool.pixi.feature.all.dependencies]
pip = "*"
[tool.pixi.pypi-dependencies]
uarray = { path = "." }
[tool.pixi.environments]
default = { solve-group = "default" }
all = { features = ["all", "docs", "tests", "optional"], solve-group = "default" }
docs = { features = ["docs"], solve-group = "default" }
optional = { features = ["optional"], solve-group = "default" }
tests = { features = ["tests"], solve-group = "default" }
[tool.pixi.tasks]