2023-09-03 09:12:21 -07:00
|
|
|
[tool.poetry]
|
|
|
|
name = "python-jobspy"
|
2024-10-25 12:54:14 -07:00
|
|
|
version = "1.1.75"
|
2023-10-30 17:57:36 -07:00
|
|
|
description = "Job scraper for LinkedIn, Indeed, Glassdoor & ZipRecruiter"
|
2023-10-18 12:25:53 -07:00
|
|
|
authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"]
|
|
|
|
homepage = "https://github.com/Bunsly/JobSpy"
|
2023-09-03 09:12:21 -07:00
|
|
|
readme = "README.md"
|
2024-08-03 20:48:53 -07:00
|
|
|
keywords = ['jobs-scraper', 'linkedin', 'indeed', 'glassdoor', 'ziprecruiter']
|
2023-09-03 09:12:21 -07:00
|
|
|
|
2023-09-03 10:05:50 -07:00
|
|
|
packages = [
|
|
|
|
{ include = "jobspy", from = "src" }
|
|
|
|
]
|
|
|
|
|
2023-09-03 09:12:21 -07:00
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
requests = "^2.31.0"
|
|
|
|
beautifulsoup4 = "^4.12.2"
|
|
|
|
pandas = "^2.1.0"
|
2024-07-17 18:54:08 -07:00
|
|
|
NUMPY = "1.26.3"
|
2023-09-03 09:12:21 -07:00
|
|
|
pydantic = "^2.3.0"
|
2024-02-29 19:30:56 -08:00
|
|
|
tls-client = "^1.0.1"
|
2024-10-19 22:18:44 -07:00
|
|
|
markdownify = "^0.13.1"
|
2024-04-30 09:36:01 -07:00
|
|
|
regex = "^2024.4.28"
|
2023-09-03 09:12:21 -07:00
|
|
|
|
|
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
|
|
pytest = "^7.4.1"
|
|
|
|
jupyter = "^1.0.0"
|
2024-04-30 10:03:10 -07:00
|
|
|
black = "*"
|
|
|
|
pre-commit = "*"
|
2023-09-03 09:12:21 -07:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core"]
|
2023-09-03 18:05:54 -07:00
|
|
|
build-backend = "poetry.core.masonry.api"
|
2024-03-10 21:36:27 -07:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|