-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
25 lines (23 loc) · 888 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
from setuptools import setup
with open('README.md', 'r') as fp:
long_description = fp.read()
setup(
name='h5attr',
version='0.9',
description="H5Attr: Quick access to hdf5 data via attributes, allowing `group.key` instead of `group['key']` and IPython/Jupyter tab completion.",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/syrte/h5attr/',
keywords=['HDF5', 'h5py'],
author='Syrtis Major',
author_email='styr.py@gmail.com',
py_modules=['h5attr'],
install_requires=['h5py', 'numpy'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)