-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (32 loc) · 984 Bytes
/
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
from setuptools import setup
req_packages = ['numpy',
'scipy',
'pandas',
'matplotlib>=2.0.0',
'shapely',
'requests',
'configobj',
'netcdf4',
'xarray',
'salem',
'oggm']
setup(
# Project info
name='initialization',
version='1.0.0',
description='initialization of past glacier states',
# Github repostiory link
url='http://github.com/OGGM/initialization',
# Authors details
author='OGGM Developers',
author_email='jeis@uni-bremen.de',
# License
license='BSD-3-Clause',
# What does the project relate to?
keywords=['geosciences', 'glaciers', 'initialization','reconstruction'],
packages=['initialization'],
# Python 3 only
python_requires='>=3.5',
# Install all dependencies --> same as for OGGM
install_requires=req_packages,
zip_safe=False)