-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·39 lines (34 loc) · 942 Bytes
/
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
#!/usr/bin/env python
from tp.netlib import __version__ as version
version = "%s.%s.%s" % version[0:3]
from setuptools import setup
setup(
name ="libtpproto-py",
version =version,
license ="LGPL",
description ="Network library for Thousand Parsec",
long_description="""\
A library of code for both Servers and Clients to support the Thousand Parsec
protocol.
Includes support for:
* Both non-blocking and blocking usage
* Version 3 protocol
* HTTP/HTTPS Tunneling
* Generic Reference System
""",
author ="Tim Ansell",
author_email="[email protected]",
url ="http://www.thousandparsec.net",
keywords ="thousand parsec space network empire building strategy game",
namespace_packages = ['tp'],
packages=[ \
'tp',
'tp.netlib',
'tp.netlib.objects',
'tp.netlib.objects.ObjectExtra',
'tp.netlib.objects.OrderExtra',
'tp.netlib.discover',
'tp.netlib.discover.pyZeroconf',
'tp.netlib.support',
],
)