-
Notifications
You must be signed in to change notification settings - Fork 385
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.74 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.74 KB
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
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "ocpp"
version = "2.1.0"
description = "Python package implementing the JSON version of the Open Charge Point Protocol (OCPP)."
authors = [
"André Duarte <andre15x@gmail.com>",
"Auke Willem Oosterhoff <aukewillem.oosterhoff@mobilityhouse.com>",
"Greg Lutostanski <greg.luto@gmail.com>",
"Jared Newell <jared.newell@mobilityhouse.com>",
"Jonathan Herrmann <jonathan.herrmann@mobilityhouse.com>",
"Laysa Uchoa <laysa.uchoa@gmail.com>",
"Oz N Tiram <oz.tiram@mobilityhouse.com>",
"Patrick Roelke <proelke@gmail.com>",
"Roger <roger.duran@mobilityhouse.com>",
"dx <dx@mobilityhouse.com>",
"Jan Vincke <jan.vincke@mobilityhouse.com>",
]
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.13',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
]
[tool.poetry.dependencies]
python = "^3.11"
jsonschema = "^4.23.0"
[tool.poetry.group.dev.dependencies]
# Starting from Python 3.8, asynctest is replaced with a unittest.mock.AsyncMock in standard library.
pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
pytest-cov = "^6.1.1"
black = "^25.1.0"
isort = "^6.0.1"
flake8 = "^7.2.0"
hypothesis = "^6.131.9"
sphinx = "^8.2.3"
sphinx-rtd-theme = "^3.0.2"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"