Skip to content

Commit

Permalink
setup.py
Browse files Browse the repository at this point in the history
Fix blanks
  • Loading branch information
D. MacCarthy committed Feb 9, 2017
1 parent 199e260 commit 1511b90
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,37 @@
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),

# Details
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"
]
)

0 comments on commit 1511b90

Please sign in to comment.