forked from advanced-security/policy-as-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPipfile
More file actions
27 lines (24 loc) · 633 Bytes
/
Copy pathPipfile
File metadata and controls
27 lines (24 loc) · 633 Bytes
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[packages]
pyyaml = "*"
semantic-version = "*"
ghastoolkit = "==0.14.2"
[dev-packages]
sphinx = "*"
myst-parser = "*"
typing_extensions = "*"
tomli = "*"
black = "*"
[scripts]
main = "python -m ghascompliance"
# generate license files
license-gen = "python vendor/ghastoolkit/supplychain/licensing.py -o ./ghascompliance/data/clearlydefined.json"
# vendor the deps
vendor = "./vendor/update.sh"
# tests / linting
test = "python -m unittest discover -s ./tests -p 'test_*.py'"
fmt = "black ghascompliance tests"
lint = "black --check ghascompliance tests"