From bdc45c5b63a35242187ffe42e6668721f4ea40e7 Mon Sep 17 00:00:00 2001 From: nruest Date: Thu, 26 Sep 2013 08:55:15 -0400 Subject: [PATCH] need a manifest file to make setup happy about the readme --- MANIFEST.in | 2 ++ setup.py | 8 +++----- 2 files changed, 5 insertions(+), 5 deletions(-) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..9d5d250 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include LICENSE +include README.rst diff --git a/setup.py b/setup.py index 5484d23..fd26c12 100644 --- a/setup.py +++ b/setup.py @@ -4,12 +4,9 @@ """ This module can be used to validate BagitProfiles. """ -with open('README.rst') as file: - long_description = file.read() - setup( name = 'bagit_profile', - version = '0.0.2', + version = '0.0.5', url = 'https://github.com/ruebot/bagit-profiles-validator', install_requires=['bagit', 'requests'], author = 'Mark Jordon, Nick Ruest', @@ -17,7 +14,8 @@ py_modules = ['bagit_profile'], scripts = ['bagit_profile.py'], description = description, - long_description = long_description, + long_description = open('README.rst').read(), + package_data = { '': ['README.rst'] }, platforms = ['POSIX'], test_suite = 'test', classifiers = [