File tree 1 file changed +14
-3
lines changed
1 file changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
- from setuptools import setup , find_packages
1
+ from setuptools import setup , find_packages , Command
2
2
import os
3
3
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
+
4
14
setup (
5
15
name = "artiq" ,
6
16
version = "0.0+dev" ,
7
17
author = "whitequark" ,
8
18
author_email = "whitequark@whitequark.org" ,
9
- url = "https ://m-labs.github.io /pyparser" ,
19
+ url = "http ://m-labs.hk /pyparser" ,
10
20
description = "A Python parser intended for use in tooling" ,
11
21
long_description = open ("README.rst" ).read (),
12
22
license = "BSD" ,
18
28
test_suite = "pyparser.test" ,
19
29
package_data = {},
20
30
ext_modules = [],
21
- entry_points = {}
31
+ entry_points = {},
32
+ cmdclass = {'push_doc' :PushDocCommand }
22
33
)
You can’t perform that action at this time.
0 commit comments