-
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.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 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,12 @@ | ||
# Change Log | ||
|
||
## [Unreleased][unreleased] | ||
|
||
## [v0.1.0][] | ||
|
||
First versioned release. For previous changes, please consult the | ||
[commit history](../../commits/master). | ||
|
||
[unreleased]: ../../tree/develop | ||
[v0.1.0]: ../../releases/tag/v0.1.0 | ||
[README]: 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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
# This __about__.py file for storing project metadata is inspired by | ||
# the warehouse project: | ||
# https://github.com/pypa/warehouse/blob/master/warehouse/__about__.py | ||
|
||
__version__ = '0.1.0' | ||
__version_info__ = __version__.replace('.', ' ').replace('-', ' ').split() | ||
|
||
__title__ = 'gTest' | ||
__summary__ = 'Command-line tool for grammar testing' | ||
__uri__ = 'https://github.com/goodmami/gtest' | ||
|
||
__author__ = 'Michael Wayne Goodman' | ||
__email__ = '[email protected]' | ||
|
||
__license__ = 'MIT' | ||
__copyright__ = '2014 %s <%s> and contributors' % (__author__, __email__) |