-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.1 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
34
35
from setuptools import setup
readme = open('README.rst').read()
setup(
name='django-quiz-app',
version='0.5.1',
packages=['quiz', 'multichoice', 'true_false', 'essay', 'quiz.templatetags'],
include_package_data=True,
license='MIT License',
description='A configurable quiz app for Django.',
long_description=readme,
url='https://github.com/tomwalker/django_quiz',
author='Tom Walker',
author_email='[email protected]',
zip_safe=False,
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
install_requires=[
'django-model-utils == 2.0.3',
'Django >= 1.5.1',
'Pillow == 2.5.0'
],
test_suite='runtests.runtests'
)