-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (26 loc) · 1.48 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
from setuptools import setup
setup(
name = "ncepy",
version = "0.1",
description = "Useful toolkit for analysis and visualization of weather, climate, and ocean data.",
long_description = """ This is a toolkit for analysis and visualization of weather, climate, and ocean data. It is not a package which creates graphics or plots, but rather helps augment such packages. In this toolkit users will find routines which rotate grid relative winds to earth relative, generate color tables, identify corners for plotting regions, convert units, etc. """,
url = "https://github.com/jrcarley/NCEPy",
author = "Jacob Carley",
author_email = "[email protected]",
platforms = ["any"],
license = "GPL v2",
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent"],
packages = ['ncepy'],
)
#Development Status :: 1 - Planning
#Development Status :: 2 - Pre-Alpha
#Development Status :: 3 - Alpha
#Development Status :: 4 - Beta
#Development Status :: 5 - Production/Stable
#Development Status :: 6 - Mature
#Development Status :: 7 - Inactive