Skip to content

Commit

Permalink
adding setup.py script and manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
ogirardot committed Nov 9, 2011
1 parent 3d0a598 commit 246148f
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
Empty file added MANIFEST.in
Empty file.
21 changes: 21 additions & 0 deletions setup.py
@@ -0,0 +1,21 @@
from distutils.core import setup
setup(
name = "django-achievements",
packages = ["achievements"],
version = "0.0.1",
description = "Django application to deal with achievements and rewards unlocked by users",
author = "Olivier Girardot",
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)

0 comments on commit 246148f

Please sign in to comment.