README: Remove duplicate Gentoo hyperlink target
[pygrader.git] / setup.py
1 # Copyright (C) 2012 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of pygrader.
4 #
5 # pygrader 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 # pygrader 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 # pygrader.  If not, see <http://www.gnu.org/licenses/>.
16
17 "Manage a course's grade database with email-based communication."
18
19 from distutils.core import setup as _setup
20 import os.path as _os_path
21
22 from pygrader import __version__
23
24
25 _this_dir = _os_path.dirname(__file__)
26
27 _setup(
28     name='pygrader',
29     version=__version__,
30     maintainer='W. Trevor King',
31     maintainer_email='wking@tremily.us',
32     url='http://blog.tremily.us/posts/pygrader/',
33     download_url='http://git.tremily.us/?p=pygrader.git;a=snapshot;h=v{};sf=tgz'.format(__version__),
34     license = 'GNU General Public License (GPL)',
35     platforms = ['all'],
36     description = __doc__,
37     long_description=open(_os_path.join(_this_dir, 'README'), 'r').read(),
38     classifiers = [
39         'Development Status :: 3 - Alpha',
40         'Intended Audience :: Education',
41         'Operating System :: OS Independent',
42         'License :: OSI Approved :: GNU General Public License (GPL)',
43         'Programming Language :: Python :: 3',
44         'Programming Language :: Python :: 3.2',
45         'Programming Language :: Python :: 3.3',
46         'Topic :: Communications :: Email',
47         'Topic :: Database',
48         'Topic :: Education',
49         ],
50     scripts = ['bin/pg.py'],
51     packages = [
52         'pygrader', 'pygrader.handler', 'pygrader.model', 'pygrader.test'],
53     provides = [
54         'pygrader', 'pygrader.handler', 'pygrader.model', 'pygrader.test'],
55     )