-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (52 loc) · 1.3 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
[tool.poetry]
name = "playmobile-client"
version = "1.0.0"
description = "Python client for Playmobile.uz API"
license = "BSD-3-Clause"
authors = [
"Daniil Andreev <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/absolutionsuz/playmobile-client"
keywords = [
"playmobile",
"smsxabar",
"client",
"httpx",
"requests"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP"
]
packages = [
{ include = "playmobile" }
]
[tool.poetry.dependencies]
python = "^3.7"
attrs = "^22.0"
faker = "^16.6"
httpx = "^0.23"
marshmallow = "^3.18"
[tool.poetry.group.test.dependencies]
pytest = "^7.1"
pytest-httpx = "^0.21"
pytest-cov = "^3.0"
pytest-randomly = "^3.12"
pytest-deadfixtures = "^2.2"
pytest-timeout = "^2.1"
mypy = "^0.971"
wemake-python-styleguide = "^0.17"
flake8-pytest-style = "^1.6"
import-linter = "^1.4"
safety = "^2.3"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"