forked from M-o-a-T/asyncari
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
51 lines (46 loc) · 1.28 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
[build-system]
requires = ["setuptools>=64", "setuptools-scm[toml]>=7.0"]
build-backend = "setuptools.build_meta"
[project]
name = "asyncari"
authors = [
{ name = "Matthias Urlichs", email = "[email protected]" },
]
license = { file = "LICENSE" }
description = "Asynchronous adapter to the Asterisk ARI interface"
readme = "README.rst"
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: AnyIO",
"Framework :: AsyncIO",
"Framework :: Trio",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Communications :: Telephony",
]
keywords = [ "asterisk", "ari" ]
urls = { Homepage = "https://github.com/M-o-a-T/asyncari" }
dependencies = [
"httpx",
"anyio >= 4.6",
"attrs >= 18",
"asyncwebsockets",
"asyncswagger11",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
]
[tool.setuptools_scm]
[tool.flake8]
max-line-length=99
ignore="E402,E731,E127,E502,E123,W503"
[tool.towncrier]
package = "asyncari"
filename = "docs/source/history.rst"
directory = "newsfragments"
underlines = ["-", "~", "^"]
issue_format = "`#{issue} <https://github.com/M-o-a-T/asyncari/issues/{issue}>`__"