diff --git a/setup.py b/setup.py index 121290e..d50d48c 100644 --- a/setup.py +++ b/setup.py @@ -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 = "marc.harper@gmail.com", - classifiers = classifiers, - description = "Make ternary plots in matplotlib", + author="Marc Harper", + author_email="marc.harper@gmail.com", + 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", )