mirror of
https://github.com/Griffon26/taserver
synced 2026-08-23 18:26:04 -04:00
In case someone stumbles across this page and does not even have Tribes Ascend installed, it may be useful to have some up-to-date instructions on how to install it.
11 lines
228 B
Python
11 lines
228 B
Python
from distutils.core import setup
|
|
|
|
setup(
|
|
name='TAServer',
|
|
version='2.5.2',
|
|
license='AGPLv3',
|
|
description='A reference implementation of the tribes ascend server',
|
|
install_requires=[
|
|
"gevent"
|
|
],
|
|
)
|