JobSpy/pyproject.toml

30 lines
674 B
TOML
Raw Normal View History

2023-09-03 09:12:21 -07:00
[tool.poetry]
name = "python-jobspy"
2023-10-30 18:29:34 -07:00
version = "1.1.25"
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"
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"
tls-client = "^0.2.1"
beautifulsoup4 = "^4.12.2"
pandas = "^2.1.0"
NUMPY = "1.24.2"
2023-09-03 09:12:21 -07:00
pydantic = "^2.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.1"
jupyter = "^1.0.0"
[build-system]
requires = ["poetry-core"]
2023-09-03 18:05:54 -07:00
build-backend = "poetry.core.masonry.api"