-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (55 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
66 lines (55 loc) · 1.45 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
60
61
62
63
64
65
66
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyoscp"
version = "0.1.0"
description = "Python library for the Open Smart Charging Protocol (OSCP)"
authors = [
{ name = "Florian Maurer", email = "maurer@fh-aachen.de"},
]
license = {text = "MIT"}
readme = "README.md"
keywords = ["ev", "charging", "OpenAPI", "Swagger", "REST"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = [
"flask >= 2.1.2",
"flask-restx >= 1.0.3",
"requests >= 2.28.1",
]
[project.optional-dependencies]
dev = [
"black >= 22.8.0",
"isort >= 5.10.1",
"mypy >= 0.971",
]
[project.urls]
homepage = "https://github.com/NOWUM/pyoscp"
repository = "https://github.com/NOWUM/pyoscp"
[tool.setuptools]
packages = {find = {}}
[tool.isort]
profile = "black"
add_imports = ["from __future__ import annotations"]
[tool.pytest]
testpaths = "tests"
[tool.mypy]
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_equality = true
# output
show_error_context = true
show_column_numbers = true
show_error_codes = true
pretty = true