27 lines
568 B
TOML
27 lines
568 B
TOML
[build-system]
|
|
requires = [
|
|
"setuptools>=61.0",
|
|
]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "ArielleCollect"
|
|
description = "Application for collect data from Arielle (id.3)"
|
|
dynamic = ["version"]
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{ name = "Jens Ahrensfeld" }
|
|
]
|
|
dependencies = [
|
|
"CarConnectivity[all] @ git+https://github.com/tillsteinbach/CarConnectivity.git@main"
|
|
|
|
]
|
|
readme = "README.md"
|
|
|
|
[project.scripts]
|
|
post_install = "arielle_collect.post_install:main"
|
|
|
|
[tool.setuptools]
|
|
package-dir = {"" = "src"}
|
|
packages = ["arielle_collect"]
|