0ad/source/tools/lobbybots/setup.py
user1 dd19cc3444 Major improvements to the lobby bots XpartaMuPP and EcheLOn.
Reviewers: elexis, Dunedan

Fixes: #5914

Differential Revision: https://code.wildfiregames.com/D2630
This was SVN commit r25424.
2021-05-12 15:40:50 +00:00

42 lines
1.1 KiB
Python

#!/usr/bin/env python3
"""setup.py for 0ad XMPP lobby bots."""
from setuptools import find_packages, setup
setup(
name='XpartaMuPP',
version='0.24',
description='Multiplayer lobby bots for 0ad',
packages=find_packages(),
entry_points={
'console_scripts': [
'echelon=xpartamupp.echelon:main',
'xpartamupp=xpartamupp.xpartamupp:main',
'echelon-db=xpartamupp.lobby_ranking:main',
]
},
install_requires=[
'dnspython',
'sleekxmpp',
'sqlalchemy',
],
tests_require=[
'coverage',
'hypothesis',
'parameterized',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Games/Entertainment',
'Topic :: Internet :: XMPP',
],
zip_safe=False,
test_suite='tests',
)