-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 862 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
from setuptools import setup, find_packages
setup(
name = "vgrid",
version = "1.0.0",
license = "BSD 2-Clause License",
packages = find_packages(
where="VGRID"),
python_requires=">=3.0",
install_requires=[
"numpy",
"scipy",
"numba"
],
description="Module for incremental gridding of XYZ data.",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS"
],
keywords = "statistics GIS multibeam hydrography",
author = "Val Schmidt, Eric Younkin",
author_email="vschmidt@ccom.unh.edu, eric.g.younkin@noaa.gov"
)