-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
51 lines (45 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
48
49
50
from setuptools import setup, find_packages
def description():
with open('readme.rst', encoding="utf-8") as f:
return f.read()
setup(name='terrautils',
packages=find_packages(),
version='1.5.5',
include_package_data=True,
description='TERRA-REF workflow utilities',
long_description=description(),
author='Max Burnette',
author_email='[email protected]',
url='https://terraref.org',
project_urls = {
'Source': 'https://github.com/terraref/terrautils',
'Tracker': 'https://github.com/terraref/computing-pipeline/issues',
},
install_requires=[
'cfunits',
'influxdb',
'matplotlib',
'netCDF4',
'numpy',
'Pillow',
'python-dateutil',
'scipy',
'utm',
'python-logstash',
'pyclowder>=2,<3'
],
zip_safe=False,
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Database',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Utilities',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
],
keywords=['terraref', 'clowder', 'field crop', 'phenomics', 'computer vision', 'remote sensing']
)