root/python.buildtools.buildout.cfg

Revision 776, 1.0 kB (checked in by robin, 1 year ago)

adding buildout for 3rd party tools used in packaging and development of many projects in this repositiory

Line 
1 # This is a zc.buildout configuration file. It is used to install common
2 # python devleoper tools into a buildout using the zc.recipe.egg:scripts
3 # recipe.
4
5
6 [pychecker]
7 tool=pychecker
8 unzip = true
9 recipe = zc.recipe.egg:scripts
10 entry-points = pychecker=pychecker.checker:main
11 arguments = sys.argv
12
13 [pyflakes]
14 tool=pylfakes
15 unzip = true
16 recipe = zc.recipe.egg:scripts
17 eggs = setuptools
18     pyflakes
19 entry-points = pyflakes=pkg_resources:run_script
20 arguments = 'pyflakes', 'pyflakes'
21
22 [nose]
23 tool=nosetests
24 unzip = true
25 recipe = zc.recipe.egg:scripts
26 eggs = setuptools
27     nose
28
29 [pyrex]
30 tool=pyrex
31 unzip = true
32 recipe = zc.recipe.egg:scripts
33 eggs = pyrex
34 entry-points = pyrexc=Pyrex.Compiler.Main:main
35 arguments = command_line=1
36
37 [rst2html]
38 tool=rst2html
39 unzip = true
40 recipe = zc.recipe.egg:scripts
41 eggs = docutils
42 entry-points = rst2html=docutils.core:publish_cmdline
43 arguments = writer_name='html', description='Generates (X)HTML documents'
44
45 [epydoc]
46 tool=epydoc
47 unzip = true
48 recipe = zc.recipe.egg:scripts
49 entry-points = epydoc=epydoc.cli:cli
Note: See TracBrowser for help on using the browser.