From: Joseph Spiros Date: Wed, 15 Jun 2011 10:05:04 +0000 (-0400) Subject: Fixing setup.py to reference README instead of README.markdown as otherwise sdist... X-Git-Tag: philo-0.9^0 X-Git-Url: http://git.ithinksw.org/philo.git/commitdiff_plain/3d786c6d8c1bd3685ac328c7f4b811c13ea60e1a Fixing setup.py to reference README instead of README.markdown as otherwise sdist installations will fail. --- diff --git a/setup.py b/setup.py index f33d211..8f13ea5 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( version = '.'.join([str(v) for v in version]), url = "http://philocms.org/", description = "A foundation for developing web content management systems.", - long_description = open(os.path.join(root_dir, 'README.markdown')).read(), + long_description = open(os.path.join(root_dir, 'README')).read(), maintainer = "iThink Software", maintainer_email = "contact@ithinksw.com", packages = packages,