diff options
-rw-r--r-- | HISTORY.rst | 2 | ||||
-rw-r--r-- | MANIFEST.in | 2 | ||||
-rwxr-xr-x | setup.py | 3 |
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 @@ -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', |