forked from pyswmm/pyswmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
78 lines (67 loc) · 2.39 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
# -----------------------------------------------------------------------------
# Copyright (c) 2014 Bryant E. McDonnell
#
# Licensed under the terms of the BSD2 License
# See LICENSE.txt for details
# -----------------------------------------------------------------------------
"""Python setup.py installer script."""
# Standard library imports
import ast
import os
import sys
# Third party imports
from setuptools import find_packages, setup
HERE = os.path.abspath(os.path.dirname(__file__))
PY2 = sys.version_info.major == 2
def get_version(module='pyswmm'):
"""Get version."""
with open(os.path.join(HERE, module, '__init__.py'), 'r') as f:
data = f.read()
lines = data.split('\n')
for line in lines:
if line.startswith('VERSION_INFO'):
version_tuple = ast.literal_eval(line.split('=')[-1].strip())
version = '.'.join(map(str, version_tuple))
break
return version
def get_description():
"""Get long description."""
with open(os.path.join(HERE, 'README.rst'), 'r') as f:
data = f.read()
return data
REQUIREMENTS = ['six']
if sys.version_info < (3, 4):
REQUIREMENTS.append('enum34')
setup(
name='pyswmm',
version=get_version(),
description='Python Wrapper for SWMM5 API',
long_description=get_description(),
url='https://github.com/OpenWaterAnalytics/pyswmm/wiki',
author='Bryant E. McDonnell (EmNet LLC)',
author_email='[email protected]',
install_requires=REQUIREMENTS,
packages=find_packages(exclude=['contrib', 'docs']),
package_data={
'': [
'lib/windows/swmm5.dll', 'lib/linux/swmm5.so', 'LICENSE.txt',
'AUTHORS', 'tests/data/*.inp', 'tests/*.py'
]
},
include_package_data=True,
license="BSD2 License",
keywords="swmm5, swmm, hydraulics, hydrology, modeling, collection system",
classifiers=[
"Topic :: Scientific/Engineering",
"Topic :: Documentation :: Sphinx",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: C",
"Development Status :: 4 - Beta",
])