-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (60 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
68 lines (60 loc) · 1.37 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
[project]
name = "contiguity"
version = "3.0.0"
description = "Contiguity's official Python SDK"
readme = "README.md"
license = { file = "LICENSE.txt" }
requires-python = ">=3.10"
authors = [{ name = "Contiguity", email = "help@contiguity.support" }]
keywords = [
"python",
"contiguity",
"sms",
"email",
"otp",
"deta",
"base",
"database",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.2",
"msgspec>=0.19.0",
"phonenumbers>=9.0.15,<10.0.0",
"typing-extensions>=4.12.2,<5.0.0",
]
[dependency-groups]
dev = [
"pre-commit~=4.5.0",
"pytest~=9.0.2",
"pytest-asyncio~=1.3.0",
"pytest-cov~=7.0.0",
"python-dotenv~=1.2.1",
]
[project.urls]
Repository = "https://github.com/contiguity/python"
[build-system]
requires = ["uv_build>=0.9.22"]
build-backend = "uv_build"
[tool.ruff]
src = ["src"]
line-length = 119
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "D", "T201"]
[tool.ruff.lint.per-file-ignores]
"**/tests/*" = ["S101", "S311"]
[tool.pyright]
venvPath = "."
venv = ".venv"
reportUnnecessaryTypeIgnoreComment = true
[tool.pytest.ini_options]
asyncio_mode = "auto"