forked from wegener-center/pyCAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 831 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
#!/usr/bin/env python
from distutils.core import setup
from pycat import __version__ as version
setup(name='pyCAT',
version=version,
description='Climate Analysis Tool',
license='GPLv3',
author='Armin Leuprecht',
author_email='[email protected]',
scripts=['bin/merge-bc-output.py'],
packages=['pycat', 'pycat.analysis', 'pycat.io', 'pycat.esd'],
classifiers=[
'Development Status :: 1 - Planning',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
keywords=['climate', ],
tests_require=['nose'],
)