mirror of
https://framagit.org/framasoft/framaspace/argos.git
synced 2025-04-28 18:02:41 +02:00
- Added pyOpenSSL to Pipfile and Pipfile.lock for SSL certificate expiration check implementation - Implemented SSLCertificateExpiration check in checks.py - Updated config.yaml with new test cases - Minor changes and clean up in base.py and config.py
20 lines
310 B
TOML
20 lines
310 B
TOML
[[source]]
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
name = "pypi"
|
|
|
|
[packages]
|
|
fastapi = "*"
|
|
sqlalchemy-utils = "*"
|
|
uvicorn = "*"
|
|
pyyaml = "*"
|
|
httpx = "*"
|
|
click = "*"
|
|
aiosqlite = "*"
|
|
sqlalchemy = {extras = ["asyncio"], version = "*"}
|
|
pyopenssl = "*"
|
|
|
|
[dev-packages]
|
|
|
|
[requires]
|
|
python_version = "3.11"
|