forked from nicolasfauchereau/paleopy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.49 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
from distutils.core import setup
setup(name='paleopy',
version='0.1.0',
description="""
classes and methods to calculates and plot analog composites from
a paleoclimate proxy or an ensemble of paleoclimate proxies
""",
author='Nicolas Fauchereau',
author_email='[email protected]',
url='https://github.com/nicolasfauchereau/paleopy',
packages=['paleopy',
'paleopy.core',
'paleopy.plotting',
'paleopy.markov',
'paleopy.utils',
],
license='MIT',
platforms='any',
classifiers=[
'License :: MIT',
'Programming Language :: Python :: 3',
],
long_description="""
A library implementing Python classes, methods and functions
for paleoclimate reconstructions from a proxy or ensemble of proxy
by the methof of analogs.
Reference
=============
Lorrey, A.M., Fauchereau, N., Stanton, C., Chappell, P.R., Phipps, S.J., Mackintosh, A., Renwick, J.A., and Fowler, A.M. 2013.
The Little Ice Age climate of New Zealand reconstructed from Southern Alps cirque glaciers: a synoptic type approach.
Climate Dynamics, June 2014, Volume 42, Issue 11-12, pp 3039-3060.
Contact
=============
If you have any questions or comments about paleopy, please feel free to contact me via
e-mail: [email protected]
or Twitter: https://twitter.com/nfauchereau
This project is hosted at https://github.com/nicolasfauchereau/paleopy
""",
)