-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
37 lines (32 loc) · 951 Bytes
/
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
[tool.poetry]
name = "rivian-python-client"
version = "0.0.0"
description = "Rivian API Client (Unofficial)"
readme = "README.md"
authors = ["Brian Retterer <bretterer@gmail.com>"]
license = "MIT"
packages = [
{ include = "rivian", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
aiohttp = ">=3.0.0"
cryptography = "^41.0.1"
backports-strenum = { version = "^1.2.4", python = "<3.11" }
bleak = { version = "^0.21", optional = true }
dbus-fast = {version = "^2.14.0", optional = true, platform = "linux"}
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.2"
pytest-asyncio = "^0.18.3"
python-dotenv = "^0.20.0"
aresponses = "^2.1.5"
[tool.poetry.extras]
ble = ["bleak", "dbus-fast"]
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
pattern = "default-unprefixed"
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"