-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.28 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
52
53
54
55
56
57
58
[tool.black]
exclude = '''
(
\.git/
| \.vscode/
| env/
)
'''
line-length = 88
target-version = ["py312"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Bas Stottelaar <basstottelaar@gmail.com>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: System :: Networking",
"Topic :: Software Development :: Embedded Systems",
]
description = "Frame-based streaming protocol for embedded applications."
homepage = "https://github.com/basilfx/python-tinylink"
include = [
"LICENSE.md",
]
keywords = ["python", "embedded", "tinylink", "streaming", "serial"]
license = "MIT"
name = "tinylink"
packages = [
{ include = "tinylink" }
]
readme = "README.md"
repository = "https://github.com/basilfx/python-tinylink"
version = "2.0.0"
[tool.poetry.dependencies]
prompt-toolkit = { version = "^3.0.50", optional = true }
pyserial-asyncio = { version = "^0.6", optional = true }
python = "^3.12"
[tool.poetry.group.dev.dependencies]
black = "^25.0.0"
flake8 = "^7.1.0"
isort = "^6.0.0"
pytest = "^8.3.0"
mypy = "^1.15.0"
[tool.poetry.extras]
cli = ["pyserial-asyncio", "prompt-toolkit"]
[tool.poetry.scripts]
tinylink = 'tinylink.cli:run'
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]