-
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.
If the file is loaded in binary mode, then comparisons need to be made in binary mode (which isn't being done).
- Loading branch information
1 parent
2ea56cb
commit 668aea4
Showing
2 changed files
with
3 additions
and
3 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 |
---|---|---|
|
@@ -7,13 +7,13 @@ | |
setup( | ||
name = 'reyaml', | ||
packages = ['reyaml'], # this must be the same as the name above | ||
version = '0.2', | ||
version = '0.2.1', | ||
long_description=LONG_DESC, | ||
description = 'Reader of humane YAML files', | ||
author = 'Alex Railean', | ||
author_email = '[email protected]', | ||
url = 'https://github.com/ralienpp/reyaml', | ||
download_url = 'https://github.com/ralienpp/reyaml/tarball/0.2', | ||
download_url = 'https://github.com/ralienpp/reyaml/tarball/0.2.1', | ||
keywords = ['yaml', 'parser', 'configuration', 'config'], | ||
license = 'BSD', | ||
classifiers = [ | ||
|