24 lines
617 B
TOML
24 lines
617 B
TOML
[tool.poetry]
|
|
name = "simple-ocpp-cs"
|
|
version = "0.2.0"
|
|
description = "A simple OCPP 2.0.1 compliant central system"
|
|
authors = ["Bluemedia <hi@bluemedia.dev>"]
|
|
readme = "README.md"
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
ocpp = "^2.0.0"
|
|
fastapi = {extras = ["standard"], version = "^0.115.11"}
|
|
uvicorn = {extras = ["standard"], version = "^0.34.0"}
|
|
websockets = "^15.0"
|
|
sqlalchemy = "^2.0.28"
|
|
alembic = "^1.15.1"
|
|
gunicorn = "^22.0.0"
|
|
psycopg2-binary = "^2.9.10"
|
|
argon2-cffi = "^23.1.0"
|
|
jwcrypto = "^1.5.6"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|