Skip to content

Commit

Permalink
Optimized setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Danny Lade committed Feb 13, 2019
1 parent 5a1d807 commit 9f2673c
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
22 changes: 10 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
# Traze Client Python

A Traze client based on Python 3.5.

## Install

pip install -e .

## Bots

Find examples (and other bots) here: [iteratec/traze-bots-python](https://github.com/iteratec/traze-bots-python/tree/master)
A Traze client based on Python.

## Traze

Traze is a simple tron-like multi client online game serving as a playground for exploring new technologies.
Traze is a multi client online tronlike game with MQTT protocol. It aims to provide a playground
for various game clients, AI game bots, and showcase of a resonable secure MQTT application, and
it’s fun! You can write your own game client and participate in the game using the protocol
documented on the homepage.

## Hosted by iteratec
## Links

You can join a hosted instance at [traze.iteratec.de](https://traze.iteratec.de).
* Homepage - [traze.iteratec.de](https://traze.iteratec.de/)
* Sources - [traze-client-python](https://github.com/iteratec/traze-client-python)
* Issues - [traze-client-python/issues](https://github.com/iteratec/traze-client-python/issues)
* Example Bots - [traze-bots-python](https://github.com/iteratec/traze-bots-python)
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,19 @@ def __readme__():

setup(
name='traze-client',
version='1.3.0',
version='1.3.1',
author="Danny Lade",
author_email="dannylade@gmail.com",
description=("A client for the simple tron-like multi client online game called 'Traze' which is using MQTT for communication."), # noqa
license='GPLv3',
keywords="traze client game tron-like",
url="https://github.com/iteratec/traze-client-python",
url="https://traze.iteratec.de/",
project_urls={
"Sources": "https://github.com/iteratec/traze-client-python",
"Example Bots": "https://github.com/iteratec/traze-bots-python/tree/master",
},
long_description=__readme__(),
long_description_content_type='text/markdown',

packages=find_packages('traze'),

Expand Down

0 comments on commit 9f2673c

Please sign in to comment.