File tree 1 file changed +27
-0
lines changed
1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change
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
+ )
You can’t perform that action at this time.
0 commit comments