Skip to content

Commit

Permalink
Merge pull request #79 from jklymak/pkg-for-pypy
Browse files Browse the repository at this point in the history
PKG: make pyglider package
  • Loading branch information
jklymak committed Jun 8, 2022
2 parents 3884cbb + 4220c3b commit cd07a16
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
import re
from setuptools import setup, find_packages

# Get the version from versioneer
__version__ = "0.0"
__version__ = "0.0.2"

setup(name="pyglider",
version=__version__,
description="Glider processing toolbox in python",
author="jklymak",
description="Glider data to netCDF translation in python",
author="Jody Klymak",
author_email="[email protected]",
url="https://github.com/jklymak/pyglider.git",
url="https://github.com/c-proof/pyglider.git",
packages=find_packages(exclude=['tests']),
python_requires='>=3.6',
install_requires=[
Expand All @@ -21,7 +20,9 @@
"netcdf4",
"geojson",
"gsw",
"scipy"
"scipy",
"pooch",
"pyyaml"
],
zip_safe=True
)

0 comments on commit cd07a16

Please sign in to comment.