-
Notifications
You must be signed in to change notification settings - Fork 1
/
Config
90 lines (74 loc) · 2.32 KB
/
Config
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# -*-perl-*-
package.RegionsReconPythonLambda = {
interfaces = (1.0);
deploy = {
generic = true;
};
build-environment = {
chroot = basic;
network-access = blocked;
};
build-system = cfn-build-and-brazilpython;
build-tools = {
1.0 = {
CfnBuild = 1.0;
SAMToolkit = 1.0;
BrazilPython = 3.0;
};
};
# Use runtime-dependencies for when you want to bring in additional
# packages when deploying.
# Use dependencies instead if you intend for these dependencies to
# be exported to other packages that build against you.
dependencies = {
1.0 = {
Boto3 = 1.x;
BenderLibCore = 3.0; # for @exponential_backoff()
RegionsReconPythonCommon = 1.0;
Python-simplejson = 3.x;
Python-dateutil = 2.x;
Python-dataclasses = 0.x;
PynamoDB = 5.x;
Pydash = 3.4.x;
BONESHydraTemplate = 1.2;
Python-dateparser = 0.x;
Python-tzlocal = 1.x;
Python-ipython = 5.3.x;
Python-aws-requests-auth = 0.x; # used to curl rms apis
BATSComponentLocatorLambda = 1.0;
Python-networkx = 2.x;
# Helper Packages to query RIP data
RIPPythonHelperLocal = 2.0;
RIPDataAllSQLite = 1.0;
};
};
test-dependencies = {
1.0 = {
# Run tests with py.test in BrazilPython
BrazilPython-Pytest = 5.x;
# Coverage for Python tests.
Python-Pytest-cov = 2.x;
Python-cov-core = 1.15.x;
Coverage = 4.x;
# Publish test results to Brazil's test and coverage detection
BrazilPythonTestSupport = 3.0;
Python-ipython = 5.3.x;
Python-moto = 1.x;
Python-freezegun = 0.x;
Python-mockito = 1.1.x;
Python-networkx = 2.x;
# Helper Packages to query RIP data
RIPPythonHelperLocal = 2.0;
RIPDataAllSQLite = 1.0;
};
};
targets = {
# see setup.py for the actual build logic
# keep this line for brazil-path to work
python = { type = python; };
};
runtime-dependencies = {
1.0 = {
};
};
};