-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
42 lines (36 loc) · 983 Bytes
/
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
39
40
41
42
from os.path import join, dirname
from setuptools import setup
VERSION = (0, 0, 1)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
f = open(join(dirname(__file__), 'README.rst'))
long_description = f.read().strip()
f.close()
install_requires = [
'Django',
'ella>=3.0.3',
]
test_requires = [
'nose',
'coverage',
]
setup(
name = 'ella-quizzes',
description = "ella-quizzes",
url = "https://github.com/ella/ella-quizzes/",
long_description = long_description,
version = __versionstr__,
author = "ella",
author_email = "[email protected]",
packages = ['ella_quizzes'],
zip_safe = False,
include_package_data = True,
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Operating System :: OS Independent",
],
install_requires=install_requires,
test_suite='test_ella_quizzes.run_tests.run_all',
test_requires=test_requires,
)