-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (34 loc) · 963 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "simple_com_server"
version = "0.1.0"
description = "A multiplex TCP server that provides communication with a serial device."
authors = ["José Sánchez-Gallego <[email protected]>"]
license = "BSD-3-Clause"
[tool.poetry.scripts]
com-server = "simple_com_server.__main__:com_server"
[tool.poetry.dependencies]
python = "^3.9"
pyserial = "^3.5"
pyserial-asyncio = "^0.5"
sdsstools = "^0.4.10"
daemonocle = "^1.2.3"
[tool.poetry.dev-dependencies]
ipython = ">=7.11.0"
flake8 = ">=3.7.9"
isort = ">=4.3.21"
ipdb = ">=0.12.3"
black = ">=20.8b1"
[tool.black]
line-length = 88
target-version = ['py38']
fast = true
[tool.isort]
profile = "black"
sections = ["FUTURE", "STDLIB", "TYPING", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]
default_section = "THIRDPARTY"
known_first_party = "simple_com_server"
known_typing = ["typing"]
lines_after_imports = 2
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"