-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (50 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
57 lines (50 loc) · 1.43 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
[project]
name = "scrapegraph-py"
version = "2.0.0"
description = "Official Python SDK for ScrapeGraph AI API"
readme = "README.md"
license = "MIT"
authors = [
{ name = "ScrapeGraph AI", email = "support@scrapegraphai.com" }
]
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
keywords = ["scraping", "ai", "web-scraping", "api", "sdk"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Homepage = "https://scrapegraphai.com"
Documentation = "https://docs.scrapegraphai.com"
Repository = "https://github.com/ScrapeGraphAI/scrapegraph-py"
Issues = "https://github.com/ScrapeGraphAI/scrapegraph-py/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/scrapegraph_py"]
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"python-dotenv>=1.0.0",
"ruff>=0.4.0",
]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = ["E501"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["F841", "E402"]