forked from renci-unc/ugridviz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (21 loc) · 908 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="UGridViz",
version="0.1a",
packages=find_packages(),
scripts=['ugridviz.py', ],
install_requires=['docutils', ],
package_data={'': ['*.cfg', '*.txt', '*.rst', '*.md', ], },
author="Chris Calloway",
author_email="[email protected]",
description="A client for the discovery and vizualization of data conforming to UGRID conventions.",
license="GPL2",
keywords="NHC RENCI ugrid ADCIRC unstructured grid hurricane model tropical storm",
url="https://github.com/renci-unc/ugridviz",
long_description=open('README.rst', 'r').read(),
classifiers=['Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: Scientific/Engineering :: Atmospheric Science', ]
)