JobSpy/pyproject.toml

38 lines
858 B
TOML
Raw Permalink Normal View History

2023-09-03 09:12:21 -07:00
[tool.poetry]
name = "python-jobspy"
2024-10-19 22:19:31 -07:00
version = "1.1.71"
2023-10-30 17:57:36 -07:00
description = "Job scraper for LinkedIn, Indeed, Glassdoor & ZipRecruiter"
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"
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"
markdownify = "^0.13.1"
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"
[tool.black]
line-length = 88