voxutils 0.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,8 @@
1
+ **/__pycache__
2
+ .venv/*
3
+ .vscode/*
4
+ .ruff_cache/*
5
+ voxutils.code-workspace
6
+ .gitignore
7
+ .env
8
+ publish.sh
@@ -0,0 +1 @@
1
+ 3.11
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: voxutils
3
+ Version: 0.5.0
4
+ Summary: Telephony-related utilities
5
+ Author-email: Nikša Baldun <niksa.baldun@voxdiversa.hr>
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: aiodns>=4.0.0
8
+ Requires-Dist: aiohttp>=3.13.3
9
+ Requires-Dist: aiopg>=1.4.0
10
+ Requires-Dist: aiormq>=6.9.2
11
+ Requires-Dist: aiosmtplib>=5.1.0
12
+ Requires-Dist: asyncpg>=0.31.0
13
+ Requires-Dist: cchardet==2.2.0a2
14
+ Requires-Dist: orjson>=3.11.7
15
+ Requires-Dist: psycopg2-binary>=2.9.11
16
+ Requires-Dist: pyroute2==0.8.1
17
+ Requires-Dist: python-magic>=0.4.27
18
+ Requires-Dist: pytz>=2025.2
19
+ Requires-Dist: tomli>=2.4.0
20
+ Requires-Dist: uvloop>=0.22.1
File without changes
@@ -0,0 +1,59 @@
1
+ [project]
2
+ name = "voxutils"
3
+ version = "0.5.0"
4
+ description = "Telephony-related utilities"
5
+ readme = "README.md"
6
+ authors = [
7
+ { name = "Nikša Baldun", email = "niksa.baldun@voxdiversa.hr" }
8
+ ]
9
+ requires-python = ">=3.11"
10
+ dependencies = [
11
+ "aiodns>=4.0.0",
12
+ "aiohttp>=3.13.3",
13
+ "aiopg>=1.4.0",
14
+ "asyncpg>=0.31.0",
15
+ "aiormq>=6.9.2",
16
+ "aiosmtplib>=5.1.0",
17
+ "cchardet==2.2.0a2",
18
+ "orjson>=3.11.7",
19
+ "psycopg2-binary>=2.9.11",
20
+ "pyroute2==0.8.1",
21
+ "python-magic>=0.4.27",
22
+ "pytz>=2025.2",
23
+ "tomli>=2.4.0",
24
+ "uvloop>=0.22.1",
25
+ ]
26
+
27
+ [build-system]
28
+ requires = ["hatchling"]
29
+ build-backend = "hatchling.build"
30
+
31
+ [tool.setuptools.packages.find]
32
+ where = ["src"]
33
+ namespaces = false
34
+
35
+ [tool.uv]
36
+ default-groups = []
37
+
38
+ [tool.hatch.build.targets.wheel]
39
+ packages = ["src/voxutils"]
40
+
41
+ [tool.ruff]
42
+ line-length = 100
43
+
44
+ [tool.ruff.lint]
45
+ select = ["E", "F", "I", "UP"]
46
+
47
+ [tool.ruff.format]
48
+ quote-style = "single"
49
+
50
+ [tool.ty.environment]
51
+ extra-paths = ["src"]
52
+
53
+ [dependency-groups]
54
+ dev = [
55
+ "asyncpg-stubs>=0.31.1",
56
+ "pytest>=9.0.2",
57
+ "ruff>=0.15.0",
58
+ ]
59
+
@@ -0,0 +1,4 @@
1
+ VALID_PBX_TYPES: dict[str, str] = {
2
+ # type name: display name
3
+ 'asterisk': 'Asterisk',
4
+ }