Mercurial > public > m209
changeset 72:8028e409d728 0.1.0
Setting version to 0.1.0. Created MANIFEST.in.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 23 Jul 2013 20:49:59 -0500 |
parents | 854c5d361011 |
children | 47886a54a0d8 |
files | .hgignore MANIFEST.in m209/__init__.py |
diffstat | 3 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/.hgignore Tue Jul 23 20:18:05 2013 -0500 +++ b/.hgignore Tue Jul 23 20:49:59 2013 -0500 @@ -3,3 +3,4 @@ *.swp docs/_build dist +MANIFEST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MANIFEST.in Tue Jul 23 20:49:59 2013 -0500 @@ -0,0 +1,4 @@ +include *.txt +recursive-include examples * +recursive-include docs *.rst *.py *.txt *.bat Makefile +prune docs/_build
--- a/m209/__init__.py Tue Jul 23 20:18:05 2013 -0500 +++ b/m209/__init__.py Tue Jul 23 20:49:59 2013 -0500 @@ -2,7 +2,7 @@ # This file is part of m209, the M-209 simulation. # m209 is released under the MIT License (see LICENSE.txt). -__version__ = '0.1' +__version__ = '0.1.0' class M209Error(Exception): """Base Exception class for all M209 errors"""