-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
60 lines (57 loc) · 1.34 KB
/
setup.py
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
54
55
56
57
58
59
60
#!/usr/bin/env python
from distutils.core import setup
version = '0.0.0'
setup(name='geophys2netcdf',
version=version,
packages=[
'geophys2netcdf',
'geophys2netcdf.metadata',
'geophys2netcdf.thredds_catalog',
],
package_data={
'geophys2netcdf': ['uuid.csv']
},
scripts=[
],
requires=[
'cfunits',
'collections',
'datetime',
'dateutil',
'errno',
'gc',
'glob',
'itertools',
'jinja2',
'json',
'logging',
'lxml',
'math',
'netCDF4',
'numpy',
'os',
'osgeo',
'owslib',
'pickle',
'pytz',
're',
'requests',
'scipy',
'shapely',
'shutil',
'subprocess',
'sys',
'tempfile',
'unicodedata',
'urllib',
'xml',
'yaml',
],
url='https://github.com/alex-ip/geophys2netcdf',
author='Alex Ip - Geoscience Australia',
maintainer='Alex Ip - Geoscience Australia',
maintainer_email='[email protected]',
description='Geophysics Data NetCDF Converter',
long_description='Geophysics Data NetCDF Converter',
license='Apache License 2.0'
)