-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuildout.cfg
41 lines (36 loc) · 1.02 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
[buildout]
extends =
https://raw.github.com/collective/buildout.plonetest/master/test-5.x.cfg
extensions =
mr.developer
package-name = ploneintranet.notifications
package-extras = [test]
parts +=
code-analysis
flake8
auto-checkout =
plonesocial.activitystream
plonesocial.core
plonesocial.microblog
[code-analysis]
recipe = plone.recipe.codeanalysis
directory = ${buildout:directory}/src/ploneintranet/notifications
deprecated-aliases = True
utf8-header = True
clean-lines = True
prefer-single-quotes = True
pep3101 = False
imports = True
debug-statements = True
[sources]
plonesocial.activitystream = git [email protected]:cosent/plonesocial.activitystream.git
plonesocial.core = git [email protected]:cosent/plonesocial.core.git
plonesocial.microblog = git [email protected]:cosent/plonesocial.microblog.git
[flake8]
recipe = zc.recipe.egg
eggs = flake8
${instance:eggs}
entry-points =
flake8=flake8.run:main
[test]
defaults = ['--auto-color', '--auto-progress', '-v', '-s', 'ploneintranet.notifications']