-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (23 loc) · 851 Bytes
/
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
from __future__ import print_function
__author__ = "nickrsan, ambell"
try:
from arcproject import __version__ as version
except ImportError:
version = '2019.07.25'
from setuptools import setup
if __name__ == "__main__":
setup(
name='arcproject-wq',
version=version,
packages=['arcproject', 'arcproject.scripts', 'arcproject.waterquality'],
license='MIT',
description=None,
long_description="",
install_requires=["SQLAlchemy >= 1.1.2", "six",
"geodatabase_tempfile", "amaptor == 0.1.1.7", "launchR >= 0.3.0", "chardet"],
## "pandas >= 0.16.1", "matplotlib", and "numpy >= 1.9.2" also needed, but cause issues on ArcGIS 10.4 install where it tries to upgrade numpy
author=__author__,
author_email="[email protected]",
url='https://github.com/ucd-cws/arcproject-wq-processing',
include_package_data=True,
)