-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
30 lines (29 loc) · 1.09 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
# encoding: utf8
from setuptools import setup
setup(
name='h5py_wrapper',
version='1.1.0',
author='Maximilian Schmidt, Jakob Jordan',
author_email='[email protected]',
description=('A wrapper to conveniently store nested Python dictionaries in hdf5 files.'),
license='GPL2',
keywords='hdf5 h5py',
url='https://github.com/INM-6/h5py_wrapper',
packages=['h5py_wrapper', 'tests'],
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*, !=3.4.*, <4',
scripts=['convert_h5file'],
install_requires=['h5py', 'pytest-runner', 'future'],
tests_require=['pytest'],
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
],
)