argos/Pipfile
Alexis Métaireau 0a4850c1ed First iterations of the client / server.
- Added new libraries to Pipfile: httpx and click
- Refactored the file structure
- Added new functionality in logging.py to set log level
- README.md now includes information about running the server, running the client, and a sample configuration file
- Started working on checks logic
2023-10-03 11:44:52 +02:00

18 lines
244 B
TOML

[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = "*"
sqlalchemy = "*"
sqlalchemy-utils = "*"
uvicorn = "*"
pyyaml = "*"
httpx = "*"
click = "*"
[dev-packages]
[requires]
python_version = "3.11"