forked from kallewesterling/django_quiz
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 1.11 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
36
37
38
from io import open
from setuptools import find_packages, setup
readme = open("README.rst", encoding="utf-8").read()
setup(
name="django-quiz-app",
version="0.6.0-rc.4",
packages=find_packages(),
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 :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
install_requires=[
"Django>=2.2",
"Pillow>=4.0.0",
"django-parler>=2.2,<2.4",
"django-polymorphic",
"django-jsonfield-backport",
],
test_suite="runtests.runtests",
)