Skip to content

Releasing 1.0 #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions array_api_compat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,6 @@
this implementation for the default when working with NumPy arrays.

"""
__version__ = '1.0'

from .common import *
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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",
],
)