aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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',