-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 1.02 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
[tool.poetry]
name = "coap-server"
version = "0.1.0"
description = "Celem projektu jest implementacja serwera CoAP, który będzie obsługiwał przynajmniej żądania GET, POST, PUT, oraz DELETE. Serwer powinien posiadać odpowiednio skonstruowaną architekturę - tak, aby łatwo było dodać nową funkcję obsługującą żądania przychodzące na dany URL."
authors = ["Bruno Sienkiewicz", "Maksymilian Nowak", "Michał Machnikowski"]
license = ""
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
mypy = "^1.13.0"
pytest = "^8.3.4"
coverage = "^7.6.10"
pytest-cov = "^6.0.0"
ruff = "^0.8.4"
pre-commit = "^4.0.1"
typer = "^0.15.1"
aiocoap = "^0.4.12"
[tool.poetry.scripts]
coap-server = "coap_server.__main__:app"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 79
[tool.ruff.lint]
# Disable E203 (whitespace before ':'),
# because in slices (e.g. [1 : 2]) ruff formatter inserts it
ignore = ["E203"]
# Enable isort rules for import sorting
select = ["I"]