Initial commit
This commit is contained in:
commit
b8216f6ade
25 changed files with 1539 additions and 0 deletions
19
pyproject.toml
Normal file
19
pyproject.toml
Normal file
|
@ -0,0 +1,19 @@
|
|||
[tool.poetry]
|
||||
name = "simple-ocpp-cs"
|
||||
version = "0.1.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.11"
|
||||
ocpp = "^0.26.0"
|
||||
fastapi = "^0.110.0"
|
||||
uvicorn = {extras = ["standard"], version = "^0.28.0"}
|
||||
websockets = "^12.0"
|
||||
sqlalchemy = "^2.0.28"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry-core"]
|
||||
build-backend = "poetry.core.masonry.api"
|
Loading…
Add table
Add a link
Reference in a new issue