Code Search for Developers
 
 
  

setup.py from Thousand Parsec at Krugle


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

Thousand Parsec

Thousand Parsec is a framework for turn based 4 X\'s game (eXplore, eXpand, eXploit, eXterminate). Designed for long games, supporting massive universes and has an easily expanded tech tree.

Project homepage: http://sourceforge.net/projects/thousandparsec
Programming language(s): C++,Python
License: other

  debian/
    changelog
    compat
    control
    copyright
    rules
    watch
  tp/
    client/
      pyscheme/
        t/
          factorial.scm
          generators.scm
          hello.scm
          pairs1.scm
          pocket.scm
          quine.scm
          stack.scm
          test1.scm
        LICENSE
        __init__.py
        all_tests.py
        analyzer.py
        builtins.py
        environment.py
        error.py
        evaluator.py
        expander.py
        expressions.py
        pair.py
        parser.py
        pogo.py
        prompt.py
        scheme.py
        symbol.py
        test_analyzer.py
        test_scheme.py
      ChangeDict.py
      Log.py
      __init__.py
      cache.py
      config.py
      media.py
      parser.py
      strptime.py
      threads.py
      version.py
    __init__.py
  .boring
  COPYING
  LICENSE
  README
  libtpclient-py.tailor
  setup.py