-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 1.14 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
[build-system]
requires = ["setuptools >= 42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python4yahdlc"
version = "1.3.5"
description = "Python binding of the yahdlc library allowing to encode and decode HDLC frames."
readme = "README.rst"
keywords = ["hdlc", "yahdlc", "binding", "network"]
authors = [{ name = "Paul-Emmanuel Raoul" }]
requires-python = ">=3.10, <4"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Natural Language :: English",
"Programming Language :: C",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
[project.optional-dependencies]
examples = ["fysom", "pyserial"]
tests = ["black", "ruff >= 0.3", "tox"]
[project.urls]
"Bug Tracker" = "https://github.com/SkypLabs/python4yahdlc/issues"
"Source Code" = "https://github.com/SkypLabs/python4yahdlc"