This repository has been archived by the owner on Aug 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (35 loc) · 1.48 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
"""
"""
from setuptools import setup, find_packages
import lazy5
with open('README.rst') as f:
long_description = f.read()
print('Version: {}'.format(lazy5.__version__))
setup(name='LazyHDF5',
version = lazy5.__version__,
description = 'Python Macros for h5py... because I\'m lazy',
long_description = long_description,
url = 'https://github.com/CCampJr/LazyHDF5',
author = 'Charles H. Camp Jr.',
author_email = '[email protected]',
license = 'Public Domain',
packages = find_packages(),
zip_safe = False,
include_package_data = True,
install_requires=['numpy', 'h5py>= 2.6.0'],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Environment :: X11 Applications :: Qt',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules'
])