Skip to content

Commit b64c429

Browse files
authored
Merge pull request #19 from cdce8p/main
Modernize packaging
2 parents 9c28219 + 66b28c8 commit b64c429

File tree

2 files changed

+33
-24
lines changed

2 files changed

+33
-24
lines changed

pyproject.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,36 @@
1+
[build-system]
2+
build-backend = "setuptools.build_meta"
3+
requires = ["setuptools>=77.0"]
4+
5+
[project]
6+
name = "tesla_fleet_api"
7+
version = "1.0.16"
8+
license = "Apache-2.0"
9+
description = "Tesla Fleet API library for Python"
10+
readme = "README.md"
11+
authors = [{ name = "Brett Adams", email = "[email protected]" }]
12+
requires-python = ">=3.10"
13+
classifiers = [
14+
"Development Status :: 5 - Production/Stable",
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: OS Independent",
17+
]
18+
dependencies = [
19+
"aiohttp",
20+
"aiofiles",
21+
"aiolimiter",
22+
"cryptography",
23+
"protobuf",
24+
"bleak",
25+
"bleak-retry-connector",
26+
]
27+
28+
[project.urls]
29+
"Homepage" = "https://github.com/Teslemetry/python-tesla-fleet-api"
30+
31+
[tool.setuptools.packages.find]
32+
include = ["tesla_fleet_api*"]
33+
134
[tool.ruff]
235
exclude = ["tesla_fleet_api/tesla/vehicle/proto/*"]
336

setup.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)