question: Add the Question.multimedia attribute
[quizzer.git] / setup.py
1 # Copyright (C) 2013 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of quizzer.
4 #
5 # quizzer is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation, either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # quizzer is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # quizzer.  If not, see <http://www.gnu.org/licenses/>.
16
17 "Break learning up into small task-based tests for focused study."
18
19 import codecs as _codecs
20 from distutils.core import setup as _setup
21 import os.path as _os_path
22
23 from quizzer import __version__
24
25
26 _this_dir = _os_path.dirname(__file__)
27
28 _setup(
29     name='quizzer',
30     version=__version__,
31     maintainer='W. Trevor King',
32     maintainer_email='wking@tremily.us',
33     url='http://blog.tremily.us/posts/quizzer/',
34     download_url='http://git.tremily.us/?p=quizzer.git;a=snapshot;h=v{};sf=tgz'.format(__version__),
35     license = 'GNU General Public License (GPL)',
36     platforms = ['all'],
37     description = __doc__,
38     long_description=_codecs.open(
39         _os_path.join(_this_dir, 'README'), 'r', 'utf-8').read(),
40     classifiers = [
41         'Development Status :: 3 - Alpha',
42         'Intended Audience :: Education',
43         'Operating System :: OS Independent',
44         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
45         'Programming Language :: Python :: 3',
46         'Programming Language :: Python :: 3.2',
47         'Programming Language :: Python :: 3.3',
48         'Topic :: Education',
49         'Topic :: Education :: Computer Aided Instruction (CAI)',
50         ],
51     scripts = ['pq.py'],
52     packages = ['quizzer', 'quizzer.ui'],
53     provides = ['quizzer', 'quizzer.ui'],
54     )