Publish version 0.1

This commit is contained in:
Vincent Jacques
2012-02-19 20:56:28 +00:00
parent cf96b288a0
commit dbdcda3591
3 changed files with 23 additions and 27 deletions
-19
View File
@@ -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
-5
View File
@@ -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)
+23 -3
View File
@@ -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'
],