forked from unity-sds/ades_wpst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 787 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
from setuptools import setup, find_packages
setup(
name="flask_ades_wpst",
version="0.1",
packages=find_packages(),
author="",
author_email="",
description="Base Flask app implementing OGC/ADES WPS-T specification",
long_description=open('README.md').read(),
keywords="ADES WPS-T Flask SOAMC HySDS JPL",
url="https://github.jpl.nasa.gov/SOAMC/flask_ades_wpst.git",
project_urls={
"Source Code": "https://github.jpl.nasa.gov/SOAMC/flask_ades_wpst.git",
"Container": "https://hub.docker.com/r/jjacob7734/flask-ades-wpst"
},
install_requires=[
"Flask==2.0.2",
"requests==2.26.0",
"pyyaml==5.4.1",
"kubernetes==19.15.0",
"cwltool==3.1.20211107152837",
"cwl-runner==1.0"
]
)