forked from ctc-oss/fapolicy-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
48 lines (43 loc) · 1.08 KB
/
Pipfile
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
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[requires]
python_version = "3.9"
[dev-packages]
semantic-version = "2.8.5"
setuptools-rust = "0.12.1"
ruff = "*"
pytest = "*"
pytest-cov = "*"
pytest-mock = "*"
pytest-testmon = "*"
pytest-watch = "*"
babel = "*"
babelgladeextractor = "*"
callee = "*"
pytest-lazy-fixture = "*"
markdown2 = "*"
beautifulsoup4 = "*"
wheel = "*"
[packages]
pycairo = "1.20.0"
PyGObject = "3.38.0"
events = "0.4"
argparse = "1.4.0"
rx = "~=3.2"
more-itertools = "~=7.2"
importlib-resources = "~=1.0.2"
importlib-metadata = "~=0.23"
dataclasses = "==0.6"
matplotlib = "~=3.4.3"
toml = "*"
[pipenv]
allow_prereleases = true
[scripts]
test = "pipenv run xvfb-run -a pytest -s --cov=fapolicy_analyzer fapolicy_analyzer/tests/"
lint = "pipenv run ruff check fapolicy_analyzer"
format = "pipenv run ruff format fapolicy_analyzer"
watch-test = "pipenv run xvfb-run -a pytest-watch fapolicy_analyzer/ -- --testmon -s"
extract_messages = "pipenv run python setup.py extract_messages"
compile_catalog = "pipenv run python setup.py compile_catalog -f"