-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (34 loc) · 1.18 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
from os import path
from setuptools import setup, find_packages
version = None
exec(open('wrfconf/version.py').read())
with open(path.join(path.abspath(path.dirname(__file__)), 'README.rst')) as f:
long_description = f.read()
setup(name='wrfconf',
version=version,
description='Configuration generator for WRF namelists',
long_description=long_description,
author='Jared Lewis',
author_email='[email protected]',
license='MIT',
keywords='wrf config generate generator science forecast',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Atmospheric Science'
],
install_requires=[
'pyyaml',
'six',
'marshmallow'
],
packages=find_packages(exclude='tests'),
entry_points={
'console_scripts':
['wrfconf = wrfconf.cli:main']
},
zip_safe=False)