-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.52 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "scrapi-sdk"
version = "1.0.1"
description = "Official Python SDK for the ScrAPI web scraping service."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
authors = [{ name = "DevEnterprise Software" }]
keywords = ["scraping", "scraper", "crawler", "extractor", "api", "sdk"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"httpx>=0.27,<1.0",
]
[project.optional-dependencies]
html = [
"beautifulsoup4>=4.12,<5.0",
]
dev = [
"build>=1.2",
"pytest>=8.0",
"pytest-asyncio>=0.23",
"twine>=5.1",
]
[project.urls]
Homepage = "https://scrapi.tech"
Documentation = "https://scrapi.tech/docs"
Repository = "https://github.com/DevEnterpriseSoftware/scrapi-sdk-python"
Issues = "https://github.com/DevEnterpriseSoftware/scrapi-sdk-python/issues"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
scrapi_sdk = ["py.typed"]
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]
asyncio_mode = "auto"