mirror of
https://github.com/kennethreitz/gistapi.py.git
synced 2026-06-05 23:10:17 +00:00
24 lines
592 B
Python
24 lines
592 B
Python
from fabric.api import *
|
|
from fabric.contrib.console import confirm
|
|
|
|
# Host settings (+ssh key credentials)
|
|
|
|
def publish():
|
|
""" Deploys the Gist.py project to PyPi """
|
|
pass
|
|
|
|
|
|
# # webbrowser.open('http://172.16.158.131:8080')
|
|
# def build():
|
|
# """ Generates pages of documentation """
|
|
# local('ronn -5 -b man/pdfish.1.ronn')
|
|
#
|
|
# def init():
|
|
# '''Resolves project dependencies'''
|
|
# local('virtualenv --distribute .')
|
|
# local('./bin/pip install -r requirements.txt ')
|
|
#
|
|
# def scrub():
|
|
# '''Death to the bytecode!'''
|
|
# local("find . -name \"*.pyc\" -exec rm '{}' ';'")
|