-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (90 loc) · 2.59 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (90 loc) · 2.59 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[project]
name = "python-job-scraper"
version = "0.3.0"
description = "Multi-platform job scraping library supporting Indeed, LinkedIn, Glassdoor, Upwork, and Internshala."
authors = [{name = "sarankirthic", email = "sarankirthic@gmail.com"}]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
keywords = ["job-scraping", "indeed", "linkedin", "glassdoor", "upwork", "internshala", "web-scraping"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"requests>=2.31",
"tls-client>=1.0",
"pydantic>=2.0",
"pandas>=2.0",
"markdownify>=0.11",
"beautifulsoup4>=4.12",
"lxml>=4.9",
"ddgs",
]
[project.optional-dependencies]
test = [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
lint = [
"black>=24.1.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
"pre-commit>=3.5.0",
]
dev = [
"black>=24.1.0",
"ruff>=0.1.0",
"mypy>=1.7.0",
"pre-commit>=3.5.0",
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
]
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["jobscraper*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
minversion = "7.0"
addopts = "--cov=jobscraper --cov-report=term-missing --cov-report=html -v"
markers = [
"integration: hits live external sites (deselect with -m 'not integration')",
"slow: slow tests",
"unit: unit tests",
]
[tool.coverage.run]
branch = true
omit = ["*/tests/*", "*/__main__.py"]
[tool.coverage.report]
exclude_lines = ["pragma: no cover", "def __repr__", "raise AssertionError", "raise NotImplementedError"]
[tool.black]
line-length = 88
target-version = ["py313", "py314"]
[tool.ruff]
line-length = 88
target-version = "py313"
select = ["E", "W", "F", "I"]
ignore = ["E501"]
[tool.mypy]
python_version = "3.13"
strict = false
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[project.urls]
Homepage = "https://github.com/seeedstack/job-scraper"
Documentation = "https://github.com/seeedstack/job-scraper/blob/main/README.md"
Repository = "https://github.com/seeedstack/job-scraper.git"
Issues = "https://github.com/seeedstack/job-scraper/issues"
Changelog = "https://github.com/seeedstack/job-scraper/releases"