-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (37 loc) · 965 Bytes
/
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
from setuptools import find_packages, setup
install_requires = [
'elasticsearch===7.13.4',
'urllib3===1.26.11',
'requests_aws4auth',
'requests===2.31.0',
'pystac===1.9.0',
'jsonschema',
'fastjsonschema',
'xmltodict',
'tenacity',
'fastapi',
'mangum',
'uvicorn',
'requests',
'pygeofilter',
'python-dotenv'
]
extra_requires = ['botocore', 'boto3',]
setup(
name="cumulus_lambda_functions",
version="7.3.0",
packages=find_packages(),
install_requires=install_requires,
package_data={
'': ['stac_browser/**/*', 'stac_browser/*'],
},
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage', 'pystac', 'python-dotenv', 'jsonschema', 'pytest-mock'],
test_suite='nose.collector',
author=['Wai Phyo'],
author_email=['wai.phyo@jpl.nasa.gov'],
license='NONE',
include_package_data=True,
python_requires="==3.9",
entry_points={
}
)