Skip to content

Commit baa39c4

Browse files
author
whitequark
committedMar 30, 2015
Upload documentation to m-labs.hk.
1 parent 27198c4 commit baa39c4

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed
 

‎setup.py

+14-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup, find_packages, Command
22
import os
33

4+
class PushDocCommand(Command):
5+
description = "uploads the documentation to m-labs.hk"
6+
user_options = []
7+
def initialize_options(self):
8+
pass
9+
def finalize_options(self):
10+
pass
11+
def run(self):
12+
os.system('rsync -avz doc/_build/html/ shell.serverraum.org:~/web/m-labs.hk/pyparser')
13+
414
setup(
515
name="artiq",
616
version="0.0+dev",
717
author="whitequark",
818
author_email="whitequark@whitequark.org",
9-
url="https://m-labs.github.io/pyparser",
19+
url="http://m-labs.hk/pyparser",
1020
description="A Python parser intended for use in tooling",
1121
long_description=open("README.rst").read(),
1222
license="BSD",
@@ -18,5 +28,6 @@
1828
test_suite="pyparser.test",
1929
package_data={},
2030
ext_modules=[],
21-
entry_points={}
31+
entry_points={},
32+
cmdclass={'push_doc':PushDocCommand}
2233
)

0 commit comments

Comments
 (0)
Please sign in to comment.