-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (51 loc) · 1.43 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
# -*- coding: utf-8 -*-
#
# setup.py
# pangaea
#
# Created by Alan D Snow, 2017.
# BSD 3-Clause
from setuptools import setup, find_packages
requires = [
'gazar',
'wrf-python',
]
setup(name='pangaea',
version='0.0.4',
description='An xarray extension for gridded land surface'
' & weather model output.',
# long_description='',
author='Alan D. Snow',
author_email='[email protected]',
url='https://github.com/snowman2/pangaea',
license='BSD 3-Clause',
keywords='land surface model, xarray, gdal',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
install_requires=requires,
extras_require={
'tests': [
'coveralls',
'flake8',
'pytest',
'pytest-cov',
'pylint',
],
'docs': [
'mock',
'sphinx',
'sphinx_rtd_theme',
'sphinxcontrib-napoleon',
]
},
)