-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 924 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 924 Bytes
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
from setuptools import setup, find_packages
setup(name='xcesm',
version='0.01',
description='xarray plugin for CESM output diagnosis.',
url='https://github.com/Yefee/xcesm',
author='Chengfei He',
author_email='che43@wisc.edu',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='climate modeling modelling model gcm',
license='MIT',
# packages=['xcesm','config'],
packages=find_packages(),
package_data={'xcesm': ['config/*.nc', 'plots/*.json']},
install_requires=['xarray', 'pyresample', 'cartopy'],
zip_safe=False)
print(find_packages())