-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
pyproject.toml
77 lines (69 loc) · 1.83 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>65", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target_version = ['py311']
[tool.isort]
profile = "black"
multi_line_output = 3
order_by_type = false
line_length = 79
[tool.setuptools]
zip-safe = false
[tool.setuptools.dynamic]
version = {attr = "fauxmo.__version__"}
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
[tool.mypy]
check_untyped_defs = true
disallow_untyped_calls = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
python_version = "3.11"
show_column_numbers = true
warn_incomplete_stub = false
warn_redundant_casts = true
warn_unused_ignores = true
[project]
name = "fauxmo"
urls = {homepage = "https://github.com/n8henrie/fauxmo"}
dynamic = ["version", "readme"]
license = { text = "MIT" }
description = "Emulated Belkin WeMo devices that work with the Amazon Echo"
authors = [{name = "Nathan Henrie", email = "[email protected]"}]
keywords = [ "fauxmo", "alexa", "amazon", "echo" ]
classifiers = [
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = []
[project.scripts]
fauxmo = "fauxmo.cli:cli"
[project.optional-dependencies]
test = [
"black==23.1.0",
"coverage==7.4.1",
"flake8-docstrings==1.7.0",
"flake8-import-order==0.18.2",
"flake8==6.0.0",
"httpbin==0.7.0",
"isort==5.12.0",
"mypy==1.0.1",
"pep8-naming==0.13.3",
"pytest==7.2.1",
"requests==2.29.0",
"werkzeug==2.0.3",
"tox==4.4.6",
]
dev = [
"build==0.10.0",
"recommonmark==0.7.1",
"Sphinx==5.3.0",
"sphinx_rtd_theme==1.2.0",
"twine==4.0.2",
"wheel==0.38.4",
]