Run update-copyright.py
[ipython-irc.git] / setup.py
1 # Copyright (C) 2013 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of ipython-irc.
4 #
5 # ipython-irc is free software: you can redistribute it and/or modify it under
6 # the 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 # ipython-irc is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13 # details.
14 #
15 # You should have received a copy of the GNU General Public License along with
16 # ipython-irc.  If not, see <http://www.gnu.org/licenses/>.
17
18 "An IRC iframe using webchat.freenode.net"
19
20 from distutils.core import setup
21
22 from ipythonirc import __version__
23
24
25 name = 'ipython-irc'
26 package = 'ipythonirc'
27
28 setup(
29     name=name,
30     version=__version__,
31     maintainer='W. Trevor King',
32     maintainer_email='wking@tremily.us',
33     url='http://github.com/wking/{}/'.format(name),
34     download_url='https://github.com/wking/{}/archive/v{}.tar.gz'.format(
35         name, __version__),
36     license='GNU General Public License v3 or later (GPLv3+)',
37     platforms=['all'],
38     description=__doc__,
39     long_description=open('README', 'r').read(),
40     classifiers=[
41         'Development Status :: 2 - Pre-Alpha',
42         'Intended Audience :: Education',
43         'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
44         'Programming Language :: Python :: 2',
45         'Programming Language :: Python :: 2.7',
46         'Programming Language :: Python :: 3',
47         'Programming Language :: Python :: 3.2',
48         'Programming Language :: Python',
49         'Topic :: Education',
50         ],
51     packages=[package],
52     provides=['{} ({})'.format(package, __version__)],
53     requires=['ipython'],
54     )