aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Jon Bernard <jbernard@tuxion.com> 2011-10-05 09:39:20 -0400
committerGravatar Jon Bernard <jbernard@tuxion.com> 2011-10-05 19:07:28 -0400
commitafed3639f6473da42d505fa46935a5820095c180 (patch)
tree75f5e33e5365e5ff00e1e787a4084c74dffea1ab
parent13cf54aee19b0d7fa269b503c3d6f328e5fc0552 (diff)
downloaddotfiles-afed3639f6473da42d505fa46935a5820095c180.tar.gz
dotfiles-afed3639f6473da42d505fa46935a5820095c180.tar.bz2
dotfiles-afed3639f6473da42d505fa46935a5820095c180.zip
Add HISTORY.rst to keep a log of changes for each release
-rw-r--r--HISTORY.rst2
-rw-r--r--MANIFEST.in2
-rwxr-xr-xsetup.py3
3 files changed, 5 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
new file mode 100644
index 0000000..7e21346
--- /dev/null
+++ b/HISTORY.rst
@@ -0,0 +1,2 @@
+History
+-------
diff --git a/MANIFEST.in b/MANIFEST.in
index 0c73842..3df5357 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1 +1 @@
-include README.rst LICENSE
+include HISTORY.rst README.rst LICENSE
diff --git a/setup.py b/setup.py
index df99c5a..e11410b 100755
--- a/setup.py
+++ b/setup.py
@@ -25,7 +25,8 @@ if sys.argv[-1] == "test":
setup(name='dotfiles',
version=__version__,
description='Easily manage your dotfiles',
- long_description=open('README.rst').read(),
+ long_description=open('README.rst').read() + '\n\n' +
+ open('HISTORY.rst').read(),
author='Jon Bernard',
author_email='jbernard@tuxion.com',
url='https://github.com/jbernard/dotfiles',