forked from mobilityhouse/ocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (43 loc) · 1.4 KB
/
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
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "ocpp"
version = "0.15.0"
description = "Python package implementing the JSON version of the Open Charge Point Protocol (OCPP)."
authors = [
"André Duarte <[email protected]>",
"Auke Willem Oosterhoff <[email protected]>",
"Greg Lutostanski <[email protected]>",
"Jonathan Herrmann <[email protected]>",
"Laysa Uchoa <[email protected]>",
"Oz N Tiram <[email protected]>",
"Patrick Roelke <[email protected]>",
"Roger <[email protected]>",
"dx <[email protected]>",
"Jan Vincke <[email protected]>",
]
repository = "https://github.com/mobilityhouse/ocpp"
documentation = "https://ocpp.readthedocs.io/en/latest/"
license = "MIT"
readme = "README.rst"
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7'
]
[tool.poetry.dependencies]
python = "^3.7"
jsonschema = "^4.4.0"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
pytest-asyncio = "^0.16.0"
asynctest = "^0.13.0"
freezegun = "^1.1.0"
flake8 = "^4.0.1"
pytest-cov = "^3.0.0"
sphinx = "^2.4.5"
[build-system]
requires = ["poetry>=1.1.11"]
build-backend = "poetry.masonry.api"