-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix description and example in README
- Loading branch information
Oleksii Okhrymenko
committed
Jun 22, 2016
1 parent
39be10a
commit 4b9e746
Showing
2 changed files
with
9 additions
and
8 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
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 |
---|---|---|
|
@@ -4,8 +4,11 @@ def readme(): | |
with open('README.rst') as f: | ||
return f.read() | ||
|
||
with open('LICENSE') as f: | ||
license = f.read() | ||
|
||
setup(name='simplepeg', | ||
version='1.0.0', | ||
version='1.0.1', | ||
description='Python version of SimplePEG', | ||
long_description=readme(), | ||
classifiers=[ | ||
|
@@ -18,7 +21,7 @@ def readme(): | |
author='Oleksii Okhrymenko', | ||
author_email='[email protected]', | ||
keywords='peg parser grammar', | ||
license='MIT', | ||
license=license, | ||
packages=['simplepeg'], | ||
include_package_data=True, | ||
zip_safe=False) |