forked from xarray-contrib/cupy-xarray
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (22 loc) · 766 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
import setuptools
import versioneer
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
requirements = [line.strip() for line in fh]
setuptools.setup(
name="cupy-xarray",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="cupy-xarray developers",
description="Interface for using cupy in xarray, providing convenience accessors.",
long_description=long_description,
long_description_content_type="text/markdown",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
install_requires=requirements,
)