-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (56 loc) · 1.49 KB
/
Copy pathpyproject.toml
File metadata and controls
67 lines (56 loc) · 1.49 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
[project]
name = "decodo-sdk"
version = "2.2.0"
description = "Official Python SDK for the Decodo APIs"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Decodo" }]
keywords = ["decodo", "scraping", "web-scraping", "api"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
]
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0",
"jsonschema>=4.0",
]
[project.urls]
Homepage = "https://github.com/Decodo/sdk-python"
Documentation = "https://help.decodo.com/docs/introduction"
Repository = "https://github.com/Decodo/sdk-python"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-mock>=3.14.0",
"ruff>=0.4.0",
"mypy>=1.10.0",
"types-jsonschema>=4.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
decodo = ["py.typed", "generated/decodo.ir.json"]
[tool.ruff]
line-length = 120
src = ["src"]
exclude = ["src/decodo/generated"]
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.mypy]
strict = true
packages = ["decodo"]
exclude = "src/decodo/generated|^examples/|^build/"
[[tool.mypy.overrides]]
module = "decodo.generated.*"
ignore_missing_imports = true
ignore_errors = true
[tool.pytest.ini_options]
testpaths = ["tests"]