Skip to content

Commit

Permalink
Update setup.py for 1.0.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
marcharper committed Aug 16, 2017
1 parent 6ee4084 commit 21c4540
Showing 1 changed file with 12 additions and 14 deletions.
26 changes: 12 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,26 @@
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Visualization"
]

setup(
name = "python-ternary",
version = "1.0.1",
name="python-ternary",
version="1.0.3",
packages=['ternary'],

install_requires = ["matplotlib>=1.4"],
install_requires=["matplotlib>=1.4"],

author = "Marc Harper",
author_email = "[email protected]",
classifiers = classifiers,
description = "Make ternary plots in matplotlib",
author="Marc Harper",
author_email="[email protected]",
classifiers=classifiers,
description="Make ternary plots in python with matplotlib",
long_description=long_description,
keywords = "matplotlib ternary plotting",
license = "MIT",
keywords="matplotlib ternary plotting",
license="MIT",

url = "https://github.com/marcharper/python-ternary",
download_url = "https://github.com/marcharper/python-ternary/tarball/1.0.1",
url="https://github.com/marcharper/python-ternary",
download_url="https://github.com/marcharper/python-ternary/tarball/1.0.3",
)

0 comments on commit 21c4540

Please sign in to comment.