-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
49 lines (47 loc) · 1.58 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
44
45
46
47
48
49
#!/usr/bin/python
from setuptools import setup
import sys
from hszinc import __version__
requirements = [
'pyparsing',
'pytz',
'iso8601',
'six',
]
if sys.version_info.major == 2:
requirements.append("backports.functools_lru_cache")
setup(name='hszinc',
url='https://github.com/vrtsystems/hszinc',
description='Parser and dumper for Project '\
'Haystack ZINC (Zinc is not CSV) file format',
version=__version__,
author='VRT Systems',
author_email='support@vrt.com.au',
license='BSD',
packages=[
'hszinc',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: No Input/Output (Daemon)',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Software Development :: Libraries :: Python Modules',
],
extras_require={
'unitconversion': [
'pint'
]
},
requires=requirements,
install_requires=requirements
)