-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 810 Bytes
/
setup.py
File metadata and controls
37 lines (34 loc) · 810 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
35
36
37
#!/usr/bin/env python
from distutils.core import setup
version = '0.0.0'
setup(name='agdc-v2',
version=version,
packages=[
'gdf',
'analytics',
'analytics_utils',
'execution_engine',
],
package_data={
'gdf': ['gdf_default.conf']
},
scripts=[
],
requires=[
'psycopg2',
'gdal',
'numexpr',
'numpy',
'matplotlib',
'netcdf4',
'scipy',
'pytz'
],
url='https://github.com/data-cube/agdc-v2',
author='AGDC Collaboration',
maintainer='AGDC Collaboration',
maintainer_email='',
description='AGDC v2',
long_description='Australian Geoscience Data Cube v2',
license='Apache License 2.0'
)