-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.06 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "tesla_fleet_api"
version = "1.4.5"
license = "Apache-2.0"
description = "Tesla Fleet API library for Python"
readme = "README.md"
authors = [{ name = "Brett Adams", email = "hello@teslemetry.com" }]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp",
"aiofiles",
"aiolimiter",
"cryptography",
"protobuf",
"bleak",
"bleak-retry-connector",
]
[project.urls]
"Homepage" = "https://github.com/Teslemetry/python-tesla-fleet-api"
[dependency-groups]
dev = ["pyright>=1.1.399"]
[tool.setuptools.packages.find]
include = ["tesla_fleet_api*"]
[tool.setuptools.package-data]
tesla_fleet_api = ["py.typed"]
[tool.ruff]
exclude = ["tesla_fleet_api/tesla/vehicle/proto/*"]
[tool.pyright]
include = ["tesla_fleet_api"]
typeCheckingMode = "strict"
exclude = ["tesla_fleet_api/tesla/vehicle/proto/*"]