forked from xiaodeaux/rgkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix long_description and add manifest.
- Loading branch information
Peter Wen
committed
Jan 3, 2014
1 parent
d453025
commit 43dfa42
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include LICENSE | ||
include README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | ||
|