Skip to content

Commit

Permalink
update setup.py for pip
Browse files Browse the repository at this point in the history
  • Loading branch information
steidani committed Apr 18, 2021
1 parent b6c4a73 commit 33e1203
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,11 @@ Using the output 'flag' from block.run_contrack() to calculate blocking intensit
What's New
==========

v0.3.0 (18.04.2021):
--------------------

- bugfix: see Issue calc_clim error.

v0.2.0 (19.10.2020):
--------------------

Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@

setup(
name="ConTrack",
version="0.2.1",
version="0.3.1",
description="Contour Tracking of circulation anomalies in Weather and Climate Data.",
long_description=readme,
long_description_content_type="text/x-rst",
author="Daniel Steinfeld",
author_email="[email protected]",
url="https://github.com/steidani/ConTrack",
project_urls={
"Bug Tracker": "https://github.com/steidani/ConTrack/issues",
},
packages=find_packages(exclude=("tests", "tests.*", "docs", "docs.*", "examples", "examples.*" )),
python_requires=">=3.6",
install_requires=open("requirements.txt").read().split(),
Expand Down

0 comments on commit 33e1203

Please sign in to comment.