forked from data-apis/array-api-compat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (24 loc) · 859 Bytes
/
setup.py
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
import array_api_compat
setup(
name='array_api_compat',
version=array_api_compat.__version__,
packages=find_packages(include=['array_api_compat*']),
author="Consortium for Python Data API Standards",
description="A wrapper around NumPy and other array libraries to make them compatible with the Array API standard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://data-apis.org/array-api-compat/",
license="MIT",
extras_require={
"numpy": "numpy",
"cupy": "cupy",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)