Skip to main content

Helpers for Python package hosting at GitHub.

Project description

Github features Git repository hosting, a download page for your Git tags (or any archive), a basic issue tracker, a wiki and static page hosting (gh-pages). It would be perfect for hosting a Python package and its documentation if gh-pages was easy to setup and was compatible with Sphinx.

Setting up a root branch for gh-pages is quite complex; Sphinx put its source and static files in directories named “_static” and “_source” that gh-pages doesn’t want to serve them.

The Sphinx extension (github.tools.sphinx) corrects the last problem; some paver tasks (github.tools.task.*) take care of the creation of a Git submodule to host the built html documentation; The PasteScript template create the basic layout and pavement.py script to get started.

Requirements

This extension and its dependencies require:

  • a GitHub user account and,

  • Git (tested with 1.6.2.4),

  • Python 2.5+.

It currently has only been tested on Ubuntu 8.04 (and Git built from source) with Python 2.5.

It should work on os X. For Windows, It should work as long as GitPython does. However since it simply start git subprocesses to work, it might be difficult to use with Git installer like msysgit or gitextensions.

Installation

The easiest way to get github-tools is if you have setuptools installed:

easy_install github-tools

Without setuptools, download it from Pypi or from Github, untar it and run:

python setup.py install

The current development version can be found at http://github.com/dinoboff/github-tools/tarball/master.

Usage

Package layout

If you are starting from scratch, create the basic layout with paster:

paster create -t gh_package <project name>

The project name will be used for pypi and for your Github repository (http://github.com/<user>/<project name>). The project details are saved in src/<package name>/__init__.py.

To finish your development environment setup, create a virtual environment and deploy your package in development mode:

cd <project name>
python bootstrap.py --no-site-packages

The basic package comes with a virtualenv boostrap script to create an isolated Python environments. To activate this environment in your shell, run:

source ./virtual-env/bin/activate
# or .\virtual-env\Scripts\activate.bat on windows

Finally:

paver generate_setup minilib develop.

Paver add a setup.py file to your package and a portable paver library (required by setup.py), and deploy your application in development mode; The “src” folder which contains your package is added to the Python path.

You are ready to write your package (in src/) and its documentation (in docs/source). You should probably start tracking your project now:

git init
git add .
git commit -m "initial import"

Github project creation

When you are ready to share your work, you will need to create a repository at GitHub and push your local repository. Paver can do it for you. Paver will need your GitHub user name and token to create the repository. You can set them with the following command:

git config --global github.user <user>
git config --global github.token <token>

You can find your token on your Github account page.

Then, to create the repository and upload your project:

paver gh_register

Documentation hosting

Once the project is created, you can create your gh-pages branch and upload it to GitHub:

paver gh_pages_create gh_pages_build

Paver will create a submodule of your project at docs/build/html, create a gh-pages root branch and push the branch to your project. It then build the html doc. To clean the html build folder, it update the submodule (you will lose changes not committed and pushed), remove every files and directory (except .git/) and rebuild the documentation.

When your documentation can be published, simply push your gh-pages submodule to GitHub:

paver gh_pages_build gh_pages_update -m "update docs with..."

Your documentation should be available at http://<user name>.github.com/<project name>.

You might also want to update the submodule reference (a submodule point to specific commit on a remote repository, not to the HEAD of a specific branch):

git add docs/build/html
git commit -m "update gh-pages submodule"

Help and Development

If you’d like to help out, you can fork the project at http://github.com/dinoboff/github-tools/ and report any bugs at http://github.com/dinoboff/github-tools/issues.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

github-tools-0.1.2.tar.gz (69.5 kB view details)

Uploaded Source

File details

Details for the file github-tools-0.1.2.tar.gz.

File metadata

  • Download URL: github-tools-0.1.2.tar.gz
  • Upload date:
  • Size: 69.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for github-tools-0.1.2.tar.gz
Algorithm Hash digest
SHA256 71323d58c3b40d9350fad9d0438d9995334c425d0e626e4f9dfe1b4286cacb91
MD5 64a0fad95f8fbc064529bd70a1870704
BLAKE2b-256 5d45c5dd73cff1bfb8658e257bf2d33e86d8c3b1d570163526948cf9daa6726d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page