aboutsummaryrefslogtreecommitdiff
path: root/fabfile.py
blob: 7883dabafbe4a6e171e96d4608bad9d3f1bd414b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from fabric.api import task, sudo, env, local, hosts
from fabric.contrib.project import rsync_project
from fabric.contrib.console import confirm


@task
@hosts("paramiko.org")
def upload_docs():
    target = "/var/www/paramiko.org"
    staging = "/tmp/paramiko_docs"
    sudo("mkdir -p %s" % staging)
    sudo("chown -R %s %s" % (env.user, staging))
    sudo("rm -rf %s/*" % target)
    rsync_project(local_dir='docs/', remote_dir=staging, delete=True)
    sudo("cp -R %s/* %s/" % (staging, target))

@task
def build_docs():
    local("epydoc --no-private -o docs/ paramiko")

@task
def clean():
    local("rm -rf build dist docs")
    local("rm -f MANIFEST *.log demos/*.log")
    local("rm -f paramiko/*.pyc")
    local("rm -f test.log")
    local("rm -rf paramiko.egg-info")

@task
def test():
    local("python ./test.py")

@task
def release():
    confirm("Only hit Enter if you remembered to update the version!")
    confirm("Also, did you remember to tag your release?")
    build_docs()
    local("python setup.py sdist register upload")
    upload_docs()