forked from GeoscienceAustralia/digitalearthau
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·53 lines (46 loc) · 1.39 KB
/
setup.py
File metadata and controls
executable file
·53 lines (46 loc) · 1.39 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
53
#!/usr/bin/env python3
from setuptools import setup, find_packages
import versioneer
tests_require = ['pytest', 'pytest-cov', 'mock', 'pep8', 'pylint==1.6.4', 'hypothesis', 'compliance-checker']
setup(
name='digitalearthau',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://github.com/GeoscienceAustralia/digitalearthau',
author='Geoscience Australia',
license='Apache License 2.0',
packages=find_packages(),
package_data={
'': ['*.yaml', '*/*.yaml'],
},
scripts=[
],
setup_requires=[
'pytest-runner'
],
install_requires=[
'click>=5.0',
'compliance-checker',
'datacube',
'python-dateutil',
'gdal',
'eodatasets',
# dev module is used automatically when run interactively.
'structlog[dev]',
'DAWG',
'boltons',
'lxml',
],
tests_require=tests_require,
entry_points={
'console_scripts': [
'dea-archive = digitalearthau.archive:main',
'dea-clean = digitalearthau.cleanup:main',
'dea-coherence = digitalearthau.coherence:main',
'dea-duplicates = digitalearthau.duplicates:main',
'dea-move = digitalearthau.move:main',
'dea-sync = digitalearthau.sync:cli',
'dea-harvest = digitalearthau.harvest.iso19115:main'
]
},
)