From eaf4ca394dc0bdfcbe1d535076ec363b4b5b247b Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sun, 3 Jun 2012 20:14:12 +0100 Subject: [PATCH] Prepare setup.py for version 1.0 --- setup.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 494c2d71..0a5162e4 100755 --- a/setup.py +++ b/setup.py @@ -17,12 +17,12 @@ from distutils.core import setup import textwrap setup( - name = 'PyGithub', - version = '1.0', - description = 'Use the full Github API v3', - author = 'Vincent Jacques', - author_email = 'vincent@vincent-jacques.net', - url = 'http://vincent-jacques.net/PyGithub', + name = "PyGithub", + version = "1.0", + description = "Use the full Github API v3", + author = "Vincent Jacques", + author_email = "vincent@vincent-jacques.net", + url = "http://vincent-jacques.net/PyGithub", long_description = textwrap.dedent( """\ Tutorial ======== @@ -52,7 +52,10 @@ setup( See http://vincent-jacques.net/PyGithub""" ), packages = [ - 'github', + "github", + ], + data_files = [ + ( "", [ "ReadMe.md", "COPYING", "COPYING.LESSER", "doc/ReferenceOfClasses.md", "doc/ReferenceOfApis.md", "doc/Design.md" ] ), ], classifiers=[ "Development Status :: 5 - Production/Stable",