forked from CosmiQ/apls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (42 loc) · 1.45 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
from setuptools import setup, find_packages
readme = ''
version = '0.1.0'
# Runtime requirements.
inst_reqs = ['matplotlib>=3.0.0',
'shapely>=1.6.4',
'pandas>=0.23.4',
'geopandas>=0.4.0',
'opencv-python>=4.0',
'numpy>=1.15.4',
'tqdm>=4.28.1',
'GDAL==2.4.0',
'rtree>=0.8.3',
'networkx>=2.2',
'scipy>=1.2.0',
'scikit-image>=0.14.0',
'affine>=2.2.1',
'utm>=0.4.0',
]
extra_reqs = {
'test': ['mock', 'pytest', 'pytest-cov', 'codecov']}
setup(name='apls',
version=version,
description=u"""CosmiQ Works APLS Metric Implementation""",
long_description=readme,
classifiers=[
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: GIS'],
keywords='spacenet machinelearning iou aws',
author=u"Adam Van Etten",
author_email='avanetten@iqt.org',
url='https://github.com/CosmiQ/apls',
license='Apache-2.0',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
zip_safe=False,
include_package_data=True,
install_requires=inst_reqs,
extras_require=extra_reqs,
)