-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
51 lines (44 loc) · 1.19 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
47
48
49
50
51
# SPDX-FileCopyrightText: 2025 PHYTEC
#
# SPDX-License-Identifier: MIT
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phytec-eeprom-flashtool"
dynamic = ["version"]
description = "PHYTEC EEPROM Flashtool"
authors = [
{name = "PHYTEC", email = "support@phytec.de"}
]
readme = "README.rst"
license = {text = "MIT"}
requires-python = ">=3.10"
classifiers = [
"Intended Audience :: Developers",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
]
dependencies = [
"pyyaml",
"smbus2",
"crc8",
]
[project.scripts]
phytec_eeprom_flashtool = "phytec_eeprom_flashtool.__main__:cmd_main"
[tool.setuptools]
packages = {find = {include = ["phytec_eeprom_flashtool*"]}}
include-package-data = true
[tool.setuptools.package-data]
phytec_eeprom_flashtool = [
"configs/*.yml",
"constants.yml"
]
[tool.setuptools.dynamic]
version = {attr = "phytec_eeprom_flashtool.src.__init__.__version__"}
[tool.ruff]
target-version = "py313"