forked from h5netcdf/h5netcdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.11 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
import os
import sys
from setuptools import find_packages, setup
if sys.version_info[:2] < (3, 6):
raise RuntimeError("Python version >= 3.6 required.")
CLASSIFIERS = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering",
]
setup(
name="h5netcdf",
description="netCDF4 via h5py",
long_description=(
open("README.rst").read() if os.path.exists("README.rst") else ""
),
version="0.11.0",
license="BSD",
classifiers=CLASSIFIERS,
author="Stephan Hoyer",
author_email="[email protected]",
url="https://github.com/h5netcdf/h5netcdf",
python_requires=">=3.6",
install_requires=["h5py"],
tests_require=["netCDF4", "pytest"],
packages=find_packages(),
)