-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
39 lines (35 loc) · 904 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "ocpp_asgi"
version = "0.4.0"
description = "ocpp-asgi provides ASGI compliant interface for implementing event-driven server-side support for OCPP protocol with Python"
authors = ["Ville Kärkkäinen <ville.karkkainen@outlook.com>"]
readme = "README.md"
homepage = "https://github.com/villekr/ocpp-asgi"
license = "MIT"
include = [
"LICENSE",
]
keywords = ["ocpp", "asgi", "serverless"]
[tool.poetry.dependencies]
python = "^3.8.1"
ocpp = "^0.15.0"
[tool.poetry.dev-dependencies]
websockets = "10.4"
aiohttp = "3.8.3"
uvicorn = "0.20.0"
black = "22.12.0"
flake8 = "6.0.0"
isort = "5.11.2"
pytest = "7.2.0"
pytest-cov = "4.0.0"
pytest-asyncio = "0.20.3"
asgi-tools = "0.64.2"
fastapi = "0.88.0"
loguru = "0.6.0"
python-dotenv = "0.21.0"
redis = "4.4.0"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"