This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flamenco-worker/Pipfile
Sybren A. Stüvel 985b25f421 Support authenticated registration at Flamenco Manager
To secure the previously-open-to-anyone worker registration on the Flamenco
Manager, we now have to send a JWT token that was signed by a pre-shared
secret. To enable this behaviour, set `worker_registration_secret` both
in the Worker and the Manager configuration files to the same string.
2019-03-19 15:45:25 +01:00

24 lines
459 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
attrs = "*"
requests = "*"
psutil = "*"
pyjwt = "*"
[dev-packages]
pytest = "<4" # pytest-cov uses deprecated function (removed in pytest 4) when using --no-cov
pytest-cov = "*"
wheel = "*"
pyinstaller = "*"
ipython = "*"
mypy = "*"
flamenco-worker = {editable = true,path = "."}
colorama = {version = "*",sys_platform = "== 'win32'"}
[requires]
python_version = "3.7"