Skip to content

Commit cd07a16

Browse files
authored
Merge pull request #79 from jklymak/pkg-for-pypy
PKG: make pyglider package
2 parents 3884cbb + 4220c3b commit cd07a16

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

setup.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
1-
import re
21
from setuptools import setup, find_packages
32

43
# Get the version from versioneer
5-
__version__ = "0.0"
4+
__version__ = "0.0.2"
65

76
setup(name="pyglider",
87
version=__version__,
9-
description="Glider processing toolbox in python",
10-
author="jklymak",
8+
description="Glider data to netCDF translation in python",
9+
author="Jody Klymak",
1110
author_email="jklymak@gmail.com",
12-
url="https://github.com/jklymak/pyglider.git",
11+
url="https://github.com/c-proof/pyglider.git",
1312
packages=find_packages(exclude=['tests']),
1413
python_requires='>=3.6',
1514
install_requires=[
@@ -21,7 +20,9 @@
2120
"netcdf4",
2221
"geojson",
2322
"gsw",
24-
"scipy"
23+
"scipy",
24+
"pooch",
25+
"pyyaml"
2526
],
2627
zip_safe=True
2728
)

0 commit comments

Comments
 (0)