-
Notifications
You must be signed in to change notification settings - Fork 157
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b312f97
commit a4bef39
Showing
6 changed files
with
13 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
This is a plotting library for use with matplotlib to make ternary plots, including heatmaps. | ||
python-ternary is a plotting library for use with matplotlib to make ternary | ||
plots, including heatmaps. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
import setuptools | ||
from distutils.core import setup | ||
|
||
version = "1.0.6" | ||
|
||
with open('README.txt') as file: | ||
long_description = file.read() | ||
|
||
|
@@ -18,9 +20,9 @@ | |
|
||
setup( | ||
name="python-ternary", | ||
version="1.0.5", | ||
version=version, | ||
packages=['ternary'], | ||
install_requires=["matplotlib>=1.4"], | ||
install_requires=["matplotlib>=2"], | ||
author="Marc Harper and contributors", | ||
author_email="[email protected]", | ||
classifiers=classifiers, | ||
|
@@ -29,5 +31,5 @@ | |
keywords="matplotlib ternary plotting", | ||
license="MIT", | ||
url="https://github.com/marcharper/python-ternary", | ||
download_url="https://github.com/marcharper/python-ternary/tarball/1.0.5", | ||
download_url="https://github.com/marcharper/python-ternary/tarball/{}".format(version), | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters