Skip to content

Commit

Permalink
Add metadata and CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
goodmami committed Jun 18, 2016
1 parent 154b7e6 commit d1713b7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
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
17 changes: 17 additions & 0 deletions gtest/__about__.py
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__)

0 comments on commit d1713b7

Please sign in to comment.