forked from benjiyamin/pyflo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (30 loc) · 1.24 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
import os
from setuptools import setup, find_packages
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
def readlines(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as open_file:
return [l.split("==")[0] for l in open_file.readlines()]
setup(
name='pyflo',
version='0.3.3',
author='benjiyamin, see AUTHORS.md',
author_email='[email protected]',
description='PyFlo is an open-source library written in Python for performing hydraulic and '
'hydrology stormwater analysis. ',
license='GNU General Public License v3 (GPLv3), see LICENSE.md',
keywords='hydraulics hydrology storm simulation',
url='https://benjiyamin.github.io/pyflo',
packages=find_packages(exclude=["tests"]),
# packages=['pyflo'],
long_description=read('README.md'),
install_requires=readlines('requirements/production.txt'),
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python'
],
)