This repository has been archived by the owner on Feb 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
55 lines (49 loc) · 1.55 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
def version():
with open('version.txt') as h:
return h.read().strip()
setup(name='lcmap-blackmagic',
version=version(),
description='HTTP server that saves LCMAP change segments, classifiers & land cover probabilities to S3/Ceph',
long_description=readme(),
classifiers=[
'Development Status :: 5 - Stable',
'License :: OSI Approved :: Unlicense',
'Programming Language :: Python :: 3.7',
],
keywords='usgs lcmap eros pyccd ccdc',
url='http://github.com/usgs-eros/lcmap-blackmagic',
author='USGS EROS LCMAP',
author_email='',
license='Unlicense',
packages=['blackmagic'],
install_requires=[
'arrow==0.14.7',
'cython',
'lcmap-merlin>=2.3.1',
'lcmap-pyccd==2018.10.17',
'xgboost',
'flask',
'gunicorn',
'tenacity',
'python-interface',
'boto3',
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[test]
extras_require={
'test': ['pytest'],
'dev': ['',],
},
#test_suite='nose.collector',
#tests_require=['nose', 'nose-cover3'],
entry_points={
'console_scripts': ['blackmagic=blackmagic.app:main'],
},
include_package_data=True,
zip_safe=False)