This repository was archived by the owner on Oct 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.31 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.31 KB
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
47
48
49
50
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="tesp",
use_scm_version=True,
setup_requires=["setuptools_scm"],
url="https://github.com/OpenDataCubePipelines/tesp",
description="Data Pipeline construction.",
packages=find_packages(exclude=("tests",)),
install_requires=[
"click",
"click_datetime",
"ciso8601",
"folium",
"geopandas",
"h5py",
"luigi>2.7.6",
"numpy",
"pyyaml",
"rasterio",
"scikit-image",
"shapely",
"structlog",
"checksumdir",
"eodatasets",
"eodatasets3>=0.19.2",
"eugl",
"wagl",
"importlib-metadata;python_version<'3.8'",
],
extras_require=dict(
test=["pytest", "pytest-flake8", "deepdiff", "flake8", "pep8-naming"]
),
dependency_links=[
"git+https://github.com/GeoscienceAustralia/[email protected]#egg=eodatasets",
"git+https://github.com/GeoscienceAustralia/wagl@develop#egg=wagl",
"git+https://github.com/OpenDataCubePipelines/eugl.git@master#egg=eugl",
],
scripts=[
"bin/s2package",
"bin/ard_pbs",
"bin/search_s2",
"bin/s2-nci-processing",
"bin/batch_summary",
],
include_package_data=True,
)