-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
64 lines (53 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
[tool.black]
line-length = 79
target-version = ['py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 79
[tool.mypy]
warn_return_any = false
warn_unused_configs = true
[tool.poetry]
name = "eskiz-sms-client"
packages = [{ include = "eskiz" }]
version = "1.0.4"
description = "Async/Sync Python SDK of Eskiz.uz SMS Gateway"
authors = ["hoosnick <[email protected]>"]
license = "MIT"
readme = "README.md"
keywords = ["eskiz-sms", "eskiz", "eskiz-sms-client", "eskiz.uz"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = "^3.9"
aiohttp = ">=3.9.3"
attrs = ">=23.2.0"
certifi = ">=2024.2.2"
pydantic = ">=2.6.2"
pyjwt = ">=2.8.0"
ujson = { version = ">=5.9.0", optional = true }
[tool.poetry.group.dev.dependencies]
# pytest = ">=8.0.1"
# pytest-asyncio = ">=0.23.5"
# pytest-cov = ">=4.1.0"
# codecov = ">=2.1.13"
mypy = "^1.8.0"
black = "^24.2.0"
isort = "^5.13.2"
pre-commit = "^3.6.2"
[tool.poetry.extras]
ujson = ["ujson"]
[tool.poetry.urls]
"Source" = "https://github.com/old-juniors/eskiz-sms"
"Bug Tracker" = "https://github.com/old-juniors/eskiz-sms/issues"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"