forked from a-ulianov/OzonAPI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (68 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
76 lines (68 loc) · 2.21 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
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=45.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ozonapi-async"
version = "0.19.3"
description = "Асинхронный pydantic-интерфейс для Ozon Seller API c ограничением запросов и docstrings"
readme = "readme.md"
keywords = [
"ozon", "api", "async", "ecommerce", "seller", "docstring", "pydantic",
"analytics", "prices", "stocks", "oauth", "python"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.9,<4.0"
dependencies = [
"aiohttp>=3.13.1,<4.0.0",
"tenacity>=9.1.2,<10.0.0",
"aiolimiter>=1.2.1,<2.0.0",
"pydantic>=2.12.3,<3.0.0",
"pydantic-settings>=2.11.0,<3.0.0",
"async-lru (>=2.0.5,<3.0.0)",
]
[[project.authors]]
name = "Alexander Ulianov"
email = "a.v.ulianov@mail.ru"
[project.license]
text = "MIT"
[project.optional-dependencies]
test = [
"pytest>=8.4.2,<9.0.0",
"pytest-cov>=7.0.0,<8.0.0",
"pytest-asyncio>=1.2.0,<2.0.0"
]
dev = [
"pytest>=8.4.2,<9.0.0",
"pytest-cov>=7.0.0,<8.0.0",
"pytest-asyncio>=1.2.0,<2.0.0"
]
[project.urls]
Homepage = "https://github.com/a-ulianov/OzonAPI"
Documentation = "https://github.com/a-ulianov/OzonAPI#readme"
Repository = "https://github.com/a-ulianov/OzonAPI"
Issues = "https://github.com/a-ulianov/OzonAPI/issues"
Changelog = "https://github.com/a-ulianov/OzonAPI/releases"
[tool.setuptools.package-data]
"*" = ["*.txt", "*.json", "*.yaml", "*.yml", "*.env"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--import-mode=importlib --cov=ozonapi --cov-report=html"
[tool.setuptools.packages.find]
where = ["src"]
include = ["ozonapi*"]