forked from h5netcdf/h5netcdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.07 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
import os
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'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.2.1.dev0',
license='BSD',
classifiers=CLASSIFIERS,
author='Stephan Hoyer',
author_email='[email protected]',
url='https://github.com/shoyer/h5netcdf',
install_requires=['h5py'],
tests_require=['netCDF4', 'pytest'],
packages=find_packages())