-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.24 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "PySIPio"
version = "1.8.0"
description = "Python SIP Library for Custom VoIP Solutions"
authors = [{name = "Moha Abdi", email = "[email protected]"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Communications :: Internet Phone",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"pydub>=0.25.1",
"requests>=2.25.1",
"edge-tts>=5.0.0",
"python-dotenv>=0.19.0",
]
keywords = [
"SIP",
"VoIP",
"Session Initiation Protocol",
"Voice over IP",
"telephony",
"communication",
"UDP",
"async",
"asynchronous",
"call handling",
"PBX",
"IVR",
"interactive voice response",
]
[project.urls]
"Homepage" = "https://github.com/moha-abdi/PySIP"
"Bug Tracker" = "https://github.com/moha-abdi/PySIP/issues"
[tool.setuptools.packages.find]
include = ["PySIP", "PySIP.*"]
[tool.setuptools.package-data]
PySIP = [".github/images/*.png"]