From 1511b90a475741ba1c8e30ba037e8c18789ac6e5 Mon Sep 17 00:00:00 2001 From: "D. MacCarthy" Date: Wed, 8 Feb 2017 18:55:53 -0700 Subject: [PATCH] setup.py Fix blanks --- setup.py | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/setup.py b/setup.py index faebcdc..801b5a9 100644 --- a/setup.py +++ b/setup.py @@ -5,21 +5,21 @@ with open("README.txt") as f: readme = f.read() setup( - # Package info + # Package info name = "sc8pr", version = ver, license = "GPLv3", packages = ["sc8pr"], - package_data = {"sc8pr": ["*.json", "icons/*.*", "robot/*.*"]}, + package_data = {"sc8pr": ["*.json", "icons/*.*", "robot/*.*"]}, # Author author = "David MacCarthy", author_email = "devwigs@gmail.com", - # Dependencies - install_requires = ["pygame(>=1.9.1)"], - - # URLs + # Dependencies + install_requires = ["pygame(>=1.9.1)"], + + # URLs url = "http://dmaccarthy.github.io/sc8pr", download_url = "https://github.com/dmaccarthy/sc8pr/archive/{}.zip".format(archive), @@ -27,15 +27,15 @@ description = "Create interactive animations with features inspired by Scratch, Processing, and robotics", long_description = readme, - # Additional data + # Additional data keywords = "graphics animation sprite gui robotics pygame educational", classifiers = [ "Development Status :: 4 - Beta", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", - "Programming Language :: Python :: 3", - "Topic :: Multimedia :: Graphics", - "Topic :: Education" + "Intended Audience :: Developers", + "Intended Audience :: Education", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Programming Language :: Python :: 3", + "Topic :: Multimedia :: Graphics", + "Topic :: Education" ] ) \ No newline at end of file