-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPipfile
37 lines (32 loc) · 955 Bytes
/
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
functionfs = "*"
pycryptodomex = "*"
sty = "*"
yappi = "*"
[dev-packages]
pylint = "*"
rope = "*"
pyinstaller = "*"
mypy = "*"
tuna = "*"
snakeviz = "*"
[requires]
python_version = "3.11"
[scripts]
start = "./start.py"
start-with-sudo = "sudo ./start.py"
# Due to how pipenv passes parameters, su is not supported at this moment.
test = "python test.py"
package = "pyinstaller -n ffsds4 --add-binary='ffsds4lib/descriptors/*.desc.bin:ffsds4lib/descriptors' start.py"
package-onefile = "pyinstaller -n ffsds4-onefile --add-binary='ffsds4lib/descriptors/*.desc.bin:ffsds4lib/descriptors' --onefile start.py"
# TODO contribute type stubs to functionfs
typecheck = "mypy --ignore-missing-imports ffsds4lib"
lint = "pylint ffsds4lib"
# TODO should adopt fail under for this
lint-minimal = "pylint --disable=all --enable=E,F ffsds4lib"
[pipenv]
allow_prereleases = true