forked from rigoudyg/climaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (70 loc) · 2.3 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import find_packages
from setuptools import setup
#version = __import__('climaf.cache').climaf_version
version = __import__('env.environment').environment.climaf_version
description = 'CliMAF: a Climate Model Assessment Framework.'
long_description = (
open('README.rst').read()
)
requires = [line.strip() for line in open('requirements.txt')]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Atmospheric Science',
# 'License :: CeCILL-C Free Software License Agreement (CECILL-C)'
]
setup(name='climaf',
version=version,
description=description,
long_description=long_description,
classifiers=classifiers,
keywords='python climate model',
author='Stéphane Sénési',
author_email="",
url='https://github.com/rigoudyg/climaf',
license="CeCILL-C license",
packages=find_packages(),
include_package_data=True,
install_requires=requires,
test_suite="tests",
data_files=[
("scripts", ["scripts/ml2pl", ])
],
scripts=[
'bin/climaf',
'bin/pdfcrop',
'bin/exiv2',
'scripts/cdfsectionsm.sh',
'scripts/cdfsections.sh',
'scripts/cdftransport.sh',
'scripts/cdftransp.sh',
'scripts/clean_pdf.sh',
'scripts/curl_tau_atm.jnl',
'scripts/curves.ncl',
'scripts/ensemble_time_series_plot.py',
'scripts/gplot.ncl',
'scripts/hovmoller.ncl',
'scripts/ks.sh',
'scripts/LinearRegression_UVCDAT.py',
'scripts/mcdo_remote.py',
'scripts/mcdo.sh',
'scripts/mcdo_aux.sh',
'scripts/mcdo.py',
'scripts/mean_and_std.sh',
'scripts/ml2pl.sh',
'scripts/mtimavg.sh',
'scripts/plot_cross_section.ncl',
'scripts/plotmap.ncl',
'scripts/read_ncks.sh',
'scripts/regridll.sh',
'scripts/regrid.sh',
'scripts/time_average_basics.sh',
'scripts/wcdo.sh',
],
)