forked from OGGM/initialization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (42 loc) · 1.21 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
from setuptools import setup
req_packages = ['numpy',
'scipy',
'pyproj',
'pandas',
'GDAL',
'geopandas',
'fiona',
'matplotlib>=2.0.0',
'scikit-image',
'Pillow',
'joblib',
'netCDF4',
'shapely',
'rasterio',
'configobj',
'pytest',
'xarray',
'progressbar2',
'boto3',
'requests',
'salem']
setup(
# Project info
name='initialization',
version='0.1',
description='initialization of past glacier states',
# Github repostiory link
url='http://github.com/OGGM/initialization',
# Authors details
author='OGGM Developers',
author_email='[email protected]',
# License
license='GPLv3+',
# What does the project relate to?
keywords=['geosciences', 'glaciers', 'initialization'],
packages=['initialization'],
# Python 3 only
python_requires='>=3.5',
# Install all dependencies --> same as for OGGM
install_requires=req_packages,
zip_safe=False)