-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (26 loc) · 916 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (26 loc) · 916 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "linkedin-scraper"
version = "0.1.0"
description = "LinkedIn scraper in Python: profiles, companies, jobs and posts as JSON, on the Bright Data LinkedIn Scraper API (Web Scraper API). No LinkedIn login, no browser. 5,000 free credits a month."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dependencies = ["brightdata-sdk>=2.5.2,<3", "rich>=13,<16"]
[project.optional-dependencies]
dev = ["pytest>=8", "ruff>=0.6"]
[project.scripts]
linkedin-scraper = "linkedin_scraper.__main__:main"
[project.urls]
Homepage = "https://github.com/brightdata/linkedin-scraper-python"
[tool.hatch.build.targets.wheel]
packages = ["src/linkedin_scraper"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]