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