-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
45 lines (41 loc) · 1.21 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
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'criticalityMaps'
VERSION = '0.0.2'
PACKAGES = find_packages()
EXTENSIONS = []
DESCRIPTION = 'WNTR utility for generating criticality maps'
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'Patrick Hassett'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'MIT'
URL = 'https://github.com/pshassett/CriticalityMaps'
INSTALL_REQUIRES = ['networkx',
'pandas',
'numpy',
'scipy',
'matplotlib',
'plotly',
# 'wntr',
'pyyaml',
'utm',
'jinja2',
'six']
setuptools_kwargs = {
'zip_safe': False,
'install_requires': INSTALL_REQUIRES,
'scripts': [],
'include_package_data': True
}
setup(name=DISTNAME,
version=VERSION,
packages=PACKAGES,
ext_modules=EXTENSIONS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
**setuptools_kwargs)