forked from opendatacube/eo-datasets
-
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 (47 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·53 lines (47 loc) · 1.17 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 python
# coding=utf-8
from setuptools import setup, find_packages
import versioneer
tests_require = [
'pytest',
'pytest-flake8',
'deepdiff',
'flake8',
'hypothesis',
'mock',
'pep8-naming',
]
setup(
name="eodatasets",
description="Packaging, metadata and provenance for GA EO datasets",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
packages=find_packages(exclude=('tests', 'tests.*')),
package_data={
'': ['*.json'],
},
install_requires=[
'click',
'python-dateutil',
'checksumdir',
'ciso8601',
'gdal',
'numpy',
'pyyaml',
'rasterio',
'shapely',
'scipy'
],
tests_require=tests_require,
extras_require={
'test': tests_require
},
entry_points='''
[console_scripts]
eod-package=eodatasets.scripts.genpackage:run
eod-generate-metadata=eodatasets.scripts.genmetadata:run
eod-generate-browse=eodatasets.scripts.genbrowse:run
eod-prepare=eodatasets.scripts.genprepare:run
eod-recompress-tar=eodatasets.scripts.recompress:main
''',
)