forked from devjones/PyEtherpadLite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
buildout.cfg
65 lines (56 loc) · 1.58 KB
/
buildout.cfg
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[buildout]
newest = false
parts = eggs
test
pyflakes
pylint
pep8
# paths
develop-eggs-directory = ${buildout:directory}/var/develop-eggs
eggs-directory = ${buildout:directory}/var/develop-eggs
parts-directory = ${buildout:directory}/var/parts
develop-dir = ${buildout:directory}/var/contrib
develop = .
# clone git repositories for external modules
extensions = gp.vcsdevelop
vcs-extend-develop = git+ssh://[email protected]/guyzmo/socketIO-client.git#egg=socketIO_client
[eggs]
recipe = zc.recipe.egg
eggs =
nose
coverage
Sphinx
sphinx-pypi-upload
pyetherpadlite
interpreter = python
extra-paths = ${buildout:directory}/var/contrib/socketIO_client
[test]
recipe = pbp.recipe.noserunner
eggs = nose
nose-progressive
coverage
defaults = -x
--with-progressive
--with-coverage
--where src/test
--cover-package py_etherpad
extra-paths = ${buildout:directory}/var/contrib/socketIO_client
[pyflakes]
recipe = zc.recipe.egg
eggs = pyflakes
scripts = pyflakes
entry-points = pyflakes=pyflakes.scripts.pyflakes:main
src-directory = src/py_etherpad
initialization = if not sys.argv[1:]: sys.argv[1:] = ["${pyflakes:src-directory}"]
[pylint]
recipe = zc.recipe.egg
eggs = pylint
scripts = pylint
entry-points = pylint=pylint.lint:Run
arguments = sys.argv[1:]
[pep8]
recipe = zc.recipe.egg
eggs = pep8
scripts = pep8
entry-points = pep8=pep8:_main
initialization = if not sys.argv[1:]: sys.argv[1:] = ["--ignore","E231,E501,E127,E126","src/"]