forked from ogirardot/django-achievements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 1.09 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
from distutils.core import setup
import sys
INSTALL_REQUIRES = ["django-appconf>=0.4.1"]
if sys.version_info < (2, 7):
INSTALL_REQUIRES += ["importlib>=1.0.2"]
setup(
name="django-achievements",
packages=["achievements", "achievements.migrations", "achievements.templatetags"],
version="0.0.9",
description="Django application to deal with achievements and rewards unlocked by users",
author="Olivier Girardot",
author_email="[email protected]",
url="https://github.com/ssaboum/django-achievements",
install_requires=INSTALL_REQUIRES,
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",
],
)