forked from OpenDataCubePipelines/tesp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.41 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.41 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
51
52
#!/usr/bin/env python
from setuptools import setup, find_packages
import versioneer
setup(name='tesp',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
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',
'eugl',
'wagl',
],
extras_require=dict(
test=[
'pytest',
'pytest-flake8',
'deepdiff',
'flake8',
'pep8-naming',
],
),
dependency_links=[
'git+https://github.com/GeoscienceAustralia/eo-datasets.git@develop#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)