-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (67 loc) · 1.73 KB
/
pyproject.toml
File metadata and controls
75 lines (67 loc) · 1.73 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
# pyproject.toml
#
# Copyright 2020 Bruce Schubert <bruce@emxsys.com> (deceased)
# Copyright 2022-2026 Ted Hess <thess@kitschensync.net>
[project]
name = "callattendant"
version = "2.3.1"
license = "MIT"
authors = [{name = "Ted Hess", email = "thess@kitschensync.net"}]
description = "An automated call attendant and call blocker using a USR5637 or CX930xx modem"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Environment :: Other Environment",
"Development Status :: 5 - Production/Stable",
"Framework :: Flask",
"Topic :: Communications :: Telephony",
"Topic :: Home Automation",
]
urls = {Homepage = "https://thess.github.io/callattendant/"}
requires-python = ">=3.11"
dependencies = [
"Flask>=3.0.1",
"waitress>=3.0.2",
"flask-paginate>=2023.10.24",
"beautifulsoup4>=4.12.3",
"requests>=2.32.4",
"lxml>=6.0.2",
"bs4>=0.0.2",
"soupsieve>=2.5",
"Werkzeug>=3.0.1",
"Jinja2>=3.1.3",
"itsdangerous>=2.1.2",
"MarkupSafe>=2.1.4",
"PyYAML>=6.0.1",
"blinker>=1.7.0",
"click>=8.1.7",
"pygments>=2.17.2",
"pyserial>=3.5",
]
[project.optional-dependencies]
mqtt = [
"paho-mqtt>=2.1.0",
]
pigpio = [
"gpiozero>=2.0.1",
"pigpio>=1.78",
]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.scripts]
callattendant = "callattendant.__main__:main"
[tool.setuptools]
include-package-data = true
script-files = [
"bin/start-callattendant",
"bin/stop-callattendant",
"bin/restart-callattendant",
"bin/monitor-callattendant",
]
[tool.setuptools.packages.find]
exclude = ["tests"]
namespaces = false
[build-system]
requires = ["setuptools >= 64"]
build-backend = "setuptools.build_meta"