-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
43 lines (39 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
41
42
43
from setuptools import setup
import sys
requirements = ['h5py']
if sys.version_info < (3, 3):
sys.stdout.write("At least Python 3.3 is required.\n")
sys.exit(1)
elif sys.version_info < (3, 6):
# typing was added in 3.5, and we rely on critical features that were
# introduced in 3.5.2+, so for versions older than 3.6 we rely on
# a backport
requirements.append('backports.typing')
#import versioneer
setup(
name='h5hep',
version="0.9",
#cmdclass="0.9", # Is this right???
description='File format using HDF5 for heterogeneous length data entries.',
url='https://github.com/mattbellis/h5hep',
download_url='https://github.com/mattbellis/h5hep/archive/v0.9.tar.gz',
author='Matt Bellis',
author_email='[email protected]',
license='MIT',
packages = ['h5hep'],
install_requires = ['numpy','h5py'],
#tests_require = ['pytest', 'pytest-cov'],
classifiers=[ # HAVE TO FIX ALL THIS
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'License :: Public Domain',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.6',
],
)