Show setup.py syntax highlighted
#!/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="tim@thousandparsec.net",
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,
)
See more files for this project here