-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 902 Bytes
/
setup.py
File metadata and controls
37 lines (31 loc) · 902 Bytes
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
#!/usr/bin/env python
import pkg_resources
pkg_resources.require('libtpclient-py')
from tp.client import version
version = "%s.%s.%s" % version
from setuptools import setup
setup(
name ="libtpclient-py",
version =version,
license ="GPL",
description ="Client support library for Thousand Parsec",
long_description="""\
A library of code to support quick development of Clients for Thousand Parsec.
Includes support for:
* Classes of keeping a download cache of the universe (including automatic
update)
* Classes for parsing and calculating tpcl
* Threading support
""",
author ="Tim Ansell",
author_email="[email protected]",
url ="http://www.thousandparsec.net",
keywords ="thousand parsec space client support empire building strategy game tpcl scheme",
namespace_packages = ['tp'],
packages=[ \
'tp',
'tp.client',
'tp.client.pyscheme',
],
zip_safe=False,
)