Skip to content

Commit 4a0bf8f

Browse files
committed
Add basic setup.py
1 parent 8d19c0c commit 4a0bf8f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
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_strict
7+
8+
setup(
9+
name='array_api_strict',
10+
version=array_api_strict.__version__,
11+
packages=find_packages(include=['array_api_strict*']),
12+
author="Consortium for Python Data API Standards",
13+
description="A strict, minimal implementation of the Python array API standard.",
14+
long_description=long_description,
15+
long_description_content_type="text/markdown",
16+
url="https://data-apis.org/array-api-strict/",
17+
license="MIT",
18+
python_requires=">=3.8",
19+
requires=["numpy"],
20+
classifiers=[
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: 3.8",
23+
"Programming Language :: Python :: 3.9",
24+
"Programming Language :: Python :: 3.10",
25+
"Programming Language :: Python :: 3.11",
26+
"License :: OSI Approved :: BSD License",
27+
"Operating System :: OS Independent",
28+
],
29+
)

0 commit comments

Comments
 (0)