-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.22 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
49
50
51
52
53
54
55
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
name = "pybluecurrent"
authors = [
{name = "Rogier van der Geer", email = "[email protected]"},
]
description = "Python client for BlueCurrent charge points."
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = [
"api",
"blue current",
"electric vehicle",
"ev",
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Typing :: Typed"
]
dependencies = [
"asyncio-multisubscriber-queue>=0.4.1",
"requests>=2.31.0",
"sjcl>=0.2.1",
"websockets>=11.0.3",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = ["black==23.3.0", "pre-commit>=3.3.3", "pytest==8.1.2", "pytest-asyncio==0.21.1"]
[project.urls]
Repository = "https://github.com/rogiervandergeer/pybluecurrent"
[tool.setuptools.package-data]
pybluecurrent = ["py.typed"]
[tool.setuptools_scm]
write_to = "src/pybluecurrent/_version.py"
[tool.black]
line-length = 120
target-version = ["py310"]
[tool.isort]
profile = "black"
[tool.ruff]
line-length = 120
target-version = "py310"