forked from chronos-pramantha/orbital-cotwo-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (45 loc) · 1.41 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
from setuptools import setup, find_packages
test_requires = [
]
dev_requires = [
'numpy=1.10.2',
'netCDF4=1.2.2',
'falcon=0.3.0',
'geojson=1.3.1',
'sqlalchemy=1.0.11',
'geoalchemy2=0.2.6',
'psycopg2=2.6.1',
'pygeoif=0.6'
]
setup(name='oco2web',
version='0.0.1beta',
description=u'NASA OCO-2 mission\'s data API',
long_description='An API based on NASA\'s CO2 data',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Service',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Software Development',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Server',
'Topic :: Scientific/Engineering :: GIS'
],
keywords='co2 emissions geolocate satallites data',
author=u"Lorenzo Moriondo",
author_email='[email protected]',
url='http://earth.projectchronos.org',
license='Apache 2.0',
packages=find_packages(exclude=['examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=dev_requires,
extras_require={
'test': test_requires,
'dev': test_requires + dev_requires,
},
entry_points="""
"""
)