-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.18 KB
/
setup.py
File metadata and controls
32 lines (29 loc) · 1.18 KB
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "WRFpy",
version = "0.2.1",
author = "Ronald van Haren",
author_email = "r.vanharen@esciencecenter.nl",
description = ("A python application that provides an easy way to set up,"
" run, and monitor (long) Weather Research and Forecasting "
" (WRF) simulations."),
license = "Apache 2.0",
keywords = "WRF cylc workflow WRFDA",
url = "https://github.com/ERA-URBAN/wrfpy",
packages=['wrfpy'],
include_package_data = True, # include everything in source control
package_data={'wrfpy': ['cylc/*.py', 'examples/*']},
scripts=['wrfpy/scripts/wrfpy'],
long_description=read('README.rst'),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
],
install_requires=['numpy', 'Jinja2', 'MarkupSafe', 'PyYAML', 'f90nml',
'python-dateutil', 'astropy', 'pathos', 'netCDF4',
'pyOpenSSL'],
)