-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
77 lines (68 loc) · 1.51 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = [
"setuptools>=61",
]
build-backend = "setuptools.build_meta"
[project]
name = "contiguity"
dynamic = ["version"]
description = "Contiguity's official Python SDK"
readme = "README.md"
license = {file = "LICENSE.txt"}
requires-python = ">=3.9"
authors = [
{name = "Contiguity", email = "[email protected]"},
]
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 = [
"htmlmin>=0.1.12",
"httpx>=0.27.2",
"phonenumbers>=8.13.47,<9.0.0",
"pydantic>=2.9.0,<3.0.0",
"typing-extensions>=4.12.2,<5.0.0",
]
[project.urls]
Repository = "https://github.com/contiguity/python"
[tool.setuptools]
package-data = {contiguity = ["py.typed"]}
[tool.setuptools.dynamic]
version = {attr = "contiguity.__version__"}
[tool.uv]
dev-dependencies = [
"pre-commit~=3.8.0",
"pytest~=8.3.3",
"pytest-cov~=5.0.0",
"python-dotenv~=1.0.1",
"pytest-asyncio~=0.24.0",
]
[tool.ruff]
src = ["src"]
line-length = 119
target-version = "py39"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["A", "D", "T201"]
[tool.pyright]
venvPath = "."
venv = ".venv"
reportUnnecessaryTypeIgnoreComment = true
[tool.pytest.ini_options]
asyncio_mode = "auto"