-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
60 lines (53 loc) · 1.57 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[tool.poetry]
name = "pylitterbot"
version = "0.0.0"
description = "Python package for controlling Whisker automatic robots."
authors = ["Nathan Spencer <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/natekspencer/pylitterbot"
repository = "https://github.com/natekspencer/pylitterbot"
keywords = ["Whisker", "Litter-Robot", "Feeder-Robot", "litter box", "pet feeder", "asynchronous"]
include = ["pylitterbot/py.typed"]
[tool.poetry.dependencies]
python = "^3.8.1"
aiohttp = "^3.8.1"
deepdiff = ">=6.2.1,<9.0.0"
PyJWT = "^2.7.0"
"backports.zoneinfo" = {version = "^0.2.1", python = "<3.9"}
pycognito = "^2024.2.0"
[tool.poetry.group.dev.dependencies]
pytest = ">=7.3.1,<9.0.0"
pytest-asyncio = ">=0.21,<0.25"
pytest-cov = ">=4.1,<6.0"
aioresponses = "^0.7.4"
mypy = "^1.3"
tox = ">=3.28,<5.0"
pytest-timeout = "^2.1.0"
ruff = ">=0.5.0,<0.9"
pytest-freezer = "^0.4.8"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.ruff.lint]
select = [
"D", # pydocstyle
"E", # pycodestyle Error
"F", # Pyflakes
"I", # isort
"W", # pycodestyle Warning
]
ignore = [
"D203", # 1 blank line required before class docstring
"D213", # Multi-line docstring summary should start at the second line
"E501", # Line too long
]
[tool.ruff.lint.isort]
combine-as-imports = true
split-on-trailing-comma = false
[tool.ruff.lint.per-file-ignores]
"tests/**.py" = ["F401"]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"