forked from pygridgen/pygridgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (34 loc) · 988 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
"""Gridgen is a tool for creating curvilinear grids.
Requires:
numpy
matplotlib
pyproj or basemap (optional)
"""
from setuptools import setup, find_packages
classifiers = """\
Development Status :: beta
Environment :: Console
Intended Audience :: Science/Research
Intended Audience :: Developers
License :: "MIT"
Operating System :: OS Independent
Programming Language :: Python
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules
"""
doclines = __doc__.split("\n")
setup(
name="pygridgen",
version='0.2.dev',
description=doclines[0],
long_description="\n".join(doclines),
author="Robert Hetland",
author_email="hetland@tamu.edu",
url="http://github.com/hetland/pygridgen",
packages=find_packages(exclude=[]),
license="MIT",
platforms="Python 2.7, 3.4, 3.5 and later.",
ext_package='pygridgen',
classifiers=classifiers.split("\n"),
install_requires=['numpy', 'matplotlib'],
)