-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 753 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 753 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
from setuptools import find_packages, setup
install_requires = [
'mdps-ds-lib',
'urllib3===1.26.11',
'fastapi',
'mangum',
'uvicorn',
'pygeofilter',
'python-dotenv'
]
setup(
name="cumulus_lambda_functions",
version="9.16.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={
}
)