Skip to content

Commit

Permalink
Fix long_description and add manifest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Wen committed Jan 3, 2014
1 parent d453025 commit 43dfa42
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include LICENSE
include README.md
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
from setuptools import setup

with open('README.md') as readme_file:
long_description = readme_file.read()

setup(
name='rgkit',
version='0.3.5',
version='0.3.6',
description='Robot Game Testing Kit',
maintainer='Peter Wen',
maintainer_email='[email protected]',
url='https://github.com/WhiteHalmos/rgkit',
packages=['rgkit', 'rgkit.render'],
package_data={'rgkit': ['bots/*.py', 'maps/*.py']},
license='Unlicense',
long_description=open('README.md', 'r').read(),
long_description=long_description,
entry_points={
'console_scripts': [
'rgrun = rgkit.run:main',
Expand Down

0 comments on commit 43dfa42

Please sign in to comment.