-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (55 loc) · 1.82 KB
/
pyproject.toml
File metadata and controls
67 lines (55 loc) · 1.82 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "intelliscraper-core"
version = "0.2.0"
description = "Smart web scraper that abstracts away complexity - from simple sites to highly protected ones."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"bs4>=0.0.2",
"html-to-markdown==3.3.2",
"html5lib>=1.1",
"playwright>=1.55.0",
"pydantic>=2.11.10",
]
authors = [{ name = "Omkar Musale", email = "omkarmusaleich@gmail.com" }]
maintainers = [{ name = "Omkar Musale", email = "omkarmusaleich@gmail.com" }]
license = { file = "LICENSE" }
keywords = [
"web-scraping",
"scraper",
"playwright",
"anti-detection",
"proxy",
"crawling",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
[dependency-groups]
dev = ["black>=25.9.0", "isort>=6.0.1", "pytest>=8.4.2"]
[project.optional-dependencies]
docs = [
"sphinx>=7.0.0",
"furo>=2024.1.29",
"myst-parser>=3.0.1",
]
[project.urls]
Homepage = "https://github.com/omkarmusale0910/IntelliScraper"
Documentation = "https://intelliscraper.readthedocs.io/en/latest/"
Repository = "https://github.com/omkarmusale0910/IntelliScraper"
Issues = "https://github.com/omkarmusale0910/IntelliScraper/issues"
Changelog = "https://github.com/omkarmusale0910/IntelliScraper/blob/main/CHANGELOG.md"
[tool.hatch.build.targets.wheel]
packages = ["intelliscraper"]
exclude = ["/.github/", "/tests/", "/.gitignore", "**/*.pyc", "**/__pycache__/"]
[project.scripts]
intelliscraper-session = "intelliscraper.scripts.get_session_data:main"