-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (33 loc) · 900 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·34 lines (33 loc) · 900 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
"""Setup file for stac."""
from setuptools import setup, find_packages
setup(
name="stac",
version="0.0.1",
packages=find_packages(),
scripts=["cluster/submit_stac_single_batch.sh", "cluster/dannce2npmp.sh"],
entry_points={
"console_scripts": [
"stac-submit = stac.interface:submit",
"stac-merge = merge_snippets:stac_merge",
"stac-submit-unfinished = stac.interface:submit_unfinished",
"stac-compute-single-batch = stac.interface:compute_single_batch",
]
},
install_requires=[
"six >= 1.12.0",
"clize >= 4.0.3",
"absl-py >= 0.7.1",
"enum34",
"future",
# 'futures',
"glfw",
"lxml",
"numpy",
"pyopengl",
"pyparsing",
"h5py >= 2.9.0",
"scipy >= 1.2.1",
"pyyaml",
"opencv-python",
],
)