From b041fb363e249ad395c52908b5875405178179be Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 7 Jul 2013 11:53:47 -0400 Subject: [PATCH] Ensure that README file makes it into the tarball setup.cfg depends on the README file for its long description, so if it's not in the source tarball, the build will bomb out. README.rst is an automatically grokked name of a file for python and gets included automatically. While we're dealing with this, add a MANIFEST.in to ensure that AUTHORS and ChangeLog get installed too. Change-Id: Id59fa5a6fecc179a80710ba8a5dc898fb713b1cf --- MANIFEST.in | 6 ++++++ README.md => README.rst | 0 setup.cfg | 2 +- 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 MANIFEST.in rename README.md => README.rst (100%) diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..c978a52 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include AUTHORS +include ChangeLog +exclude .gitignore +exclude .gitreview + +global-exclude *.pyc diff --git a/README.md b/README.rst similarity index 100% rename from README.md rename to README.rst diff --git a/setup.cfg b/setup.cfg index 9b9dfcd..23941b2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -4,7 +4,7 @@ author = OpenStack author-email = openstack-dev@lists.openstack.org summary = Collect and cache metadata, run hooks on changes. description-file = - README.md + README.rst home-page = http://github.com/stackforge/os-collect-config classifier = Development Status :: 4 - Beta