forked from markweirath/big-brother-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
77 lines (67 loc) · 3.45 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#
# BigBrotherBot(B3) (www.bigbrotherbot.com)
# Copyright (C) 2005 Michael "ThorN" Thornton
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
# Example:
# setup.py dev sdist
# setup.py dev bdist_egg
__author__ = 'ThorN'
__version__ = '1.0.0'
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import sys
# use 'register upload' to upload to pypi
if len(sys.argv) == 1:
sys.argv += ['beta', 'sdist', '--formats=gztar']
setup(
name = "b3",
version = "1.1.4",
packages = find_packages(),
extras_require = { 'mysql' : 'MySQL-python', 'elementtree' : 'elementtree' },
package_data = {
'': ['conf/*.xml', 'extplugins/conf/*.xml', 'docs/*', 'README']
},
zip_safe = False,
#download_url = 'http://b3.python-hosting.com/browser/releases/',
author = 'Michael Thornton (ThorN), Tim ter Laak (ttlogic), Mark Weirath (xlr8or)',
author_email = "[email protected]",
description = "BigBrotherBot (B3) is a cross-platform, cross-game game administration bot. Features in-game administration of game servers, multiple user access levels, and database storage. Currently include parsers for Call of Duty 1 to 5, Urban Terror (ioUrT), World of Padman ",
long_description = """\
Big Brother Bot B3 is a complete and total server administration package for online games. B3 is designed primarily to keep your server free from the derelicts of online gaming, but offers more, much more. With the stock configuration files, B3 will will keep your server free from offensive language, and team killers alike. A completely automated and customizable warning system will warn the offending players that this type of behavior is not allowed on your server, and ultimately kick, and or ban them for a predetermined time limit.
B3 was designed to be easily ported to other online games. Currently, B3 is in production for the Call of Duty series, Urban Terror (ioUrT) and World of Padman since these games are based on the Quake III Arena engine, conversion to any game using the engine should be easy.
Plugins provide much of the functionality for B3. These plugins can easily be configured. An SDK will be provided to make your own plugins.
""",
license = "GPL",
url = "http://www.bigbrotherbot.com",
entry_points = {
'console_scripts': [
'b3_run = b3.run:main',
]
},
classifiers = [
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: System :: Logging',
'Topic :: Utilities'
]
)