forked from h5netcdf/h5netcdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 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
import os
from setuptools import setup, find_packages
import sys
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',
'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.7.4',
license='BSD',
classifiers=CLASSIFIERS,
author='Stephan Hoyer',
author_email='[email protected]',
url='https://github.com/shoyer/h5netcdf',
python_requires='>=3.6',
install_requires=['h5py'],
tests_require=['netCDF4', 'pytest'],
packages=find_packages())