From dbdcda3591980de42617814f792969126e6402c3 Mon Sep 17 00:00:00 2001 From: Vincent Jacques Date: Sun, 19 Feb 2012 20:56:28 +0000 Subject: [PATCH] Publish version 0.1 --- CheeseShopDescription.rst | 19 ------------------- RoadMap.md | 5 ----- setup.py | 26 +++++++++++++++++++++++--- 3 files changed, 23 insertions(+), 27 deletions(-) delete mode 100644 CheeseShopDescription.rst diff --git a/CheeseShopDescription.rst b/CheeseShopDescription.rst deleted file mode 100644 index cf00c06f..00000000 --- a/CheeseShopDescription.rst +++ /dev/null @@ -1,19 +0,0 @@ -Tutorial -======== - -First create a Gihub instance:: - - from github import Github - - g = Github( "user", "password" ) - -Then play with your Github objects:: - - for repo in g.user().get_repos(): - print repo.name - repo.edit( has_wiki = False ) - -Reference documentation -======================= - -See https://github.com/jacquev6/PyGithub/blob/master/Reference.md diff --git a/RoadMap.md b/RoadMap.md index 66fe640b..ebf487b6 100644 --- a/RoadMap.md +++ b/RoadMap.md @@ -3,11 +3,6 @@ Planned releases (updated February 19th 2012) -* First partial release (version 0.1, planned about February 27th) - * no remaining known bugs - * full implementation of relations between users, organizations and repositories - * documentation - * Partial releases (versions 0.x) * implementation of other object types (git objects in priority) diff --git a/setup.py b/setup.py index c81e5d9e..721e9c78 100644 --- a/setup.py +++ b/setup.py @@ -1,15 +1,35 @@ #!/usr/bin/env python from distutils.core import setup +import textwrap setup( name = 'PyGithub', - version = '0.1-beta', + version = '0.1', description = 'Use the full Github API v3', author = 'Vincent Jacques', author_email = 'vincent@vincent-jacques.net', - url = 'http://github.com/jacquev6/PyGithub', - long_description = open( "CheeseShopDescription.rst" ).read(), + url = 'http://vincent-jacques.net/PyGithub', + long_description = textwrap.dedent( """\ + Tutorial + ======== + + First create a Gihub instance:: + + from github import Github + + g = Github( "user", "password" ) + + Then play with your Github objects:: + + for repo in g.user().get_repos(): + print repo.name + repo.edit( has_wiki = False ) + + Reference documentation + ======================= + + See http://vincent-jacques.net/PyGithub""" ), packages = [ 'github' ],