2024-12-04 14:55:06 -08:00
|
|
|
[build-system]
|
|
|
|
requires = [ "poetry-core",]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
2023-09-03 09:12:21 -07:00
|
|
|
[tool.poetry]
|
|
|
|
name = "python-jobspy"
|
2024-12-04 14:55:06 -08:00
|
|
|
version = "1.1.76"
|
2023-10-30 17:57:36 -07:00
|
|
|
description = "Job scraper for LinkedIn, Indeed, Glassdoor & ZipRecruiter"
|
2024-12-04 14:55:06 -08:00
|
|
|
authors = [ "Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>",]
|
2023-10-18 12:25:53 -07:00
|
|
|
homepage = "https://github.com/Bunsly/JobSpy"
|
2023-09-03 09:12:21 -07:00
|
|
|
readme = "README.md"
|
2024-12-04 14:55:06 -08:00
|
|
|
keywords = [ "jobs-scraper", "linkedin", "indeed", "glassdoor", "ziprecruiter",]
|
|
|
|
[[tool.poetry.packages]]
|
|
|
|
include = "jobspy"
|
|
|
|
from = "src"
|
2023-09-03 09:12:21 -07:00
|
|
|
|
2024-12-04 14:55:06 -08:00
|
|
|
[tool.black]
|
|
|
|
line-length = 88
|
2023-09-03 10:05:50 -07:00
|
|
|
|
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 = "*"
|