-
-
Notifications
You must be signed in to change notification settings - Fork 454
/
pyproject.toml
33 lines (28 loc) · 949 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "linkedin-api"
version = "2.3.1"
description = "LinkedIn API for Python"
authors = ["Tom Quirk <[email protected]>"]
maintainers = ["Tom Quirk <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/tomquirk/linkedin-api"
repository = "https://github.com/tomquirk/linkedin-api"
documentation = "https://linkedin-api.readthedocs.io"
keywords = ["linkedin", "api", "automation", "scraper", "bot", "data", "sdk", "ai", "integration", "profiles", "network", "company"]
packages = [{include = "linkedin_api"}]
[tool.poetry.dependencies]
python = "^3.10"
requests = "^2.32.3"
beautifulsoup4 = "^4.12.3"
lxml = "^5.3.0"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.0.2"
sphinx-book-theme = "^1.1.3"
[tool.poetry.group.test.dependencies]
pytest = "^8.3.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"