Skip to content

Commit cb682cd

Browse files
committedDec 5, 2022
Add a setup.py
1 parent 6dfc00b commit cb682cd

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
 

‎setup.py

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
from setuptools import setup, find_packages
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
import array_api_compat
7+
8+
setup(
9+
name='array_api_compat',
10+
version=array_api_compat.__version__,
11+
packages=find_packages(include=['array_api_compat*']),
12+
author="Consortium for Python Data API Standards",
13+
description="A wrapper around NumPy and other array libraries to make them compatible with the Array API standard",
14+
long_description=long_description,
15+
long_description_content_type="text/markdown",
16+
url="https://data-apis.org/array-api-compat/",
17+
license="MIT",
18+
extras_require={
19+
"numpy": "numpy",
20+
"cupy": "cupy",
21+
},
22+
classifiers=[
23+
"Programming Language :: Python :: 3",
24+
"License :: OSI Approved :: MIT License",
25+
"Operating System :: OS Independent",
26+
],
27+
)

0 commit comments

Comments
 (0)