Passed
Push — master ( 1713a6...bcb549 )
by Peter
02:05
created

site_init   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 16
dl 0
loc 18
rs 10
c 0
b 0
f 0
wmc 1
1
from less_builder import lessbuilder
2
from pyxb_builder import pyxbbuilder
3
from tikz_builder import tikzbuilder
4
from notations_builder import notationsbuilder
5
from package_builder import packagebuilder
6
from patch_builder import patchbuilder
7
from run_commands import *
8
9
def fuzzed_builders(env):
10
	env.Append(BUILDERS = 
11
				{
12
					'Lessc' : lessbuilder,
13
					'PyXB' : pyxbbuilder,
14
					'Tikz' : tikzbuilder,
15
					'Notations' : notationsbuilder,
16
					'Package' : packagebuilder,
17
					'Patch' : patchbuilder
18
				})
19
20