-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66106cb
commit 7f42022
Showing
2 changed files
with
56 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "array-api-compat" | ||
dynamic = ["version"] | ||
description = "A wrapper around NumPy and other array libraries to make them compatible with the Array API standard" | ||
readme = "README.md" | ||
license = "MIT" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "Consortium for Python Data API Standards" }, | ||
] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.13", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[project.optional-dependencies] | ||
cupy = [ | ||
"cupy", | ||
] | ||
dask = [ | ||
"dask", | ||
] | ||
jax = [ | ||
"jax", | ||
] | ||
numpy = [ | ||
"numpy", | ||
] | ||
pytorch = [ | ||
"pytorch", | ||
] | ||
sparse = [ | ||
"sparse >=0.15.1", | ||
] | ||
|
||
[project.urls] | ||
homepage = "https://data-apis.org/array-api-compat/" | ||
repository = "https://github.com/data-apis/array-api-compat/" | ||
|
||
[tool.hatch.version] | ||
path = "array_api_compat/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/array_api_compat", | ||
] |