-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
57 lines (43 loc) · 1.5 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
wikimon
~~~~~~~
A WebSocket-oriented monitor for streaming live changes to
Wikipedia. (also, wikimon, wikital monsters)
:copyright: (c) 2013-2015 by Mahmoud Hashemi and Stephen LaPorte
:license: GPLv3, see LICENSE for more details.
"""
import sys
from setuptools import setup
__author__ = 'Mahmoud Hashemi and Stephen LaPorte'
__version__ = '0.6.3dev'
__contact__ = '[email protected]'
__url__ = 'https://github.com/hatnote/wikimon'
__license__ = 'GPLv3'
desc = ('A WebSocket-oriented monitor for streaming live changes to'
'Wikipedia. (also, wikimon, wikital monsters)')
if sys.version_info < (2,6):
raise NotImplementedError("Sorry, wikimon only supports Python >=2.6")
if sys.version_info >= (3,):
raise NotImplementedError("Wikimon doesn't support Python 3 (yet!)")
setup(name='wikimon',
version=__version__,
description=desc,
long_description=__doc__,
author=__author__,
author_email=__contact__,
url=__url__,
packages=['wikimon'],
include_package_data=True,
zip_safe=False,
install_requires=['wapiti',
'Twisted==13.0.0',
'autobahn==0.5.14',
'python-geoip==1.2',
'python-geoip-geolite2==2014.207'],
license=__license__,
platforms='any',
classifiers=[
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', ]
)