-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (54 loc) · 1.5 KB
/
pyproject.toml
File metadata and controls
74 lines (54 loc) · 1.5 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[tool.poetry]
name = "skydance"
version = "2.0.0"
description = "A library for communication with Skydance Wi-Fi relays."
license = "MIT"
authors = ["Tomas Bedrich <ja@tbedrich.cz>"]
readme = "README.md"
homepage = "https://pypi.org/project/skydance"
documentation = "https://skydance.readthedocs.io"
repository = "https://github.com/tomasbedrich/skydance"
keywords = [
]
classifiers = [
"Development Status :: 1 - Planning",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking",
"Topic :: System :: Hardware",
"Topic :: Home Automation",
]
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.dev-dependencies]
# Formatters
black = "^24.8"
isort = "^5.6.3"
# Linters
mypy = "*"
pydocstyle = "*"
# Testing
pytest = "^6.1.1"
pytest-cov = "*"
pytest-describe = { git = "https://github.com/pytest-dev/pytest-describe", rev = "453aa9045b265e313f356f1492d8991c02a6aea6" } # use 2.0 when released
pytest-expecter = "^2.1"
pytest-random = "*"
pytest-asyncio = "^0.14.0"
# Reports
coveragespace = "^3.1.1"
# Documentation
mkdocs = "^1.1.2"
mkdocs-material = "*"
mkdocstrings = "*"
pygments = "^2.15.0"
# Tooling
sniffer = "*"
MacFSEvents = { version = "*", platform = "darwin" }
pync = { version = "*", platform = "darwin" }
[tool.black]
target-version = ["py36", "py37", "py38"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"