mirror of
https://github.com/status-im/PyGithub.git
synced 2026-08-31 10:51:14 +00:00
Publish version 0.1
This commit is contained in:
@@ -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
|
||||
@@ -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)
|
||||
|
||||
|
||||
@@ -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'
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user