forked from mobilityhouse/ocpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.34 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
[tool.poetry]
name = "ocpp"
version = "0.3.2"
description = "Python package implementing the JSON version of the Open Charge Point Protocol (OCPP)."
authors = [
"Andre Duarte <andre.duarte@mobilityhouse.com>",
"Auke Willem Oosterhoff <aukewillem.oosterhoff@mobilityhouse.com>",
"Greg Lutostanski <greg.lutostanski@mobilityhouse.com>",
"Jonathan Herrmann <jonathan.herrmann@mobilityhouse.com>",
"Laysa Uchoa <laysa.uchoadasilva@mobilityhouse.com>",
"Oz N Tiram, https://github.com/oz123",
"Patrick Roelke <patrick.roelke@mobilityhouse.com>",
"Roger <roger.duran@mobilityhouse.com>",
"dx <dx@mobilityhouse.com>",
"Jan Vincke <jan.vincke@mobilityhouse.com>",
]
license = "MIT"
readme = "README.rst"
classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
]
[tool.poetry.dependencies]
python = "^3.6"
# The dataclasses module is not in the stdlib in Python 3.6.
dataclasses = { version = "^0.6", python = "~3.6" }
jsonschema = "^3.0"
[tool.poetry.dev-dependencies]
pytest = "^4.5"
pytest-asyncio = "^0.10.0"
asynctest = "^0.13.0"
freezegun = "^0.3.12"
flake8 = "^3.7"
pytest-cov = "^2.7"
sphinx = "^2.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"