We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3884cbb + 4220c3b commit cd07a16Copy full SHA for cd07a16
setup.py
@@ -1,15 +1,14 @@
1
-import re
2
from setuptools import setup, find_packages
3
4
# Get the version from versioneer
5
-__version__ = "0.0"
+__version__ = "0.0.2"
6
7
setup(name="pyglider",
8
version=__version__,
9
- description="Glider processing toolbox in python",
10
- author="jklymak",
+ description="Glider data to netCDF translation in python",
+ author="Jody Klymak",
11
author_email="jklymak@gmail.com",
12
- url="https://github.com/jklymak/pyglider.git",
+ url="https://github.com/c-proof/pyglider.git",
13
packages=find_packages(exclude=['tests']),
14
python_requires='>=3.6',
15
install_requires=[
@@ -21,7 +20,9 @@
21
20
"netcdf4",
22
"geojson",
23
"gsw",
24
- "scipy"
+ "scipy",
+ "pooch",
25
+ "pyyaml"
26
],
27
zip_safe=True
28
)
0 commit comments