mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-17 05:44:08 -07:00
Reviewers: elexis, Dunedan Fixes: #5914 Differential Revision: https://code.wildfiregames.com/D2630 This was SVN commit r25424.
42 lines
1.1 KiB
Python
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',
|
|
)
|