-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (62 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
70 lines (62 loc) · 1.66 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
67
68
69
70
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py-incharge"
version = "0.2.0"
description = "A Python package for remotely controlling Vattenfall EV charging stations"
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
authors = [
{name = "Bram", email = "b.dewit@applyai.nl"}
]
maintainers = [
{name = "Bram", email = "b.dewit@applyai.nl"}
]
keywords = ["vattenfall", "incharge", "ev", "charger", "electric", "vehicle", "remote", "control", "websocket"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Hardware :: Hardware Drivers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.32.4",
"websocket-client>=1.8.0",
]
[project.optional-dependencies]
dev = ["ruff", "pyright"]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"
[tool.ruff]
line-length = 89
indent-width =4
[tool.ruff.lint]
select = [
# Pyflakes
"F",
# pycodestyle
"E4",
"E7",
"E9",
# isort
"I",
# pep8-naming
"N",
]
[tool.ruff.lint.per-file-ignores]
"__init__.py" = [
# Allow using star imports in __init__.py modules for giving easy access to
# all exports defined in a package
"F401", "F403", "F405",
]