-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (38 loc) · 1017 Bytes
/
setup.py
File metadata and controls
46 lines (38 loc) · 1017 Bytes
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
import setuptools
__version__ = '1.0'
setuptools.setup(
name="msfbe",
version=__version__,
url="https://github-fn.jpl.nasa.gov/methanesourcefinder/msf-be.git",
author="Caltech/Jet Propulsion Laboratory",
description="MSF-BE API.",
long_description=open('README.md').read(),
package_dir={'':'src'},
packages=['msfbe', 'msfbe.handlers'],
package_data={'msfbe': ['config.ini']},
data_files=[
],
platforms='any',
install_requires=[
'tornado',
'numpy',
'singledispatch',
'pytz',
'requests',
'utm',
'shapely==1.7.1',
'mock',
'backports.functools-lru-cache==1.3',
'boto3==1.15.17',
'pillow==5.0.0',
'psycopg2==2.8.6',
'six',
'psutil'
],
classifiers=[
'Development Status :: 1 - Pre-Alpha',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
]
)