forked from linkedin-developers/linkedin-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (33 loc) · 981 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
34
35
36
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "linkedin-api-client"
version = "0.2.0"
packages = [
{ include = "linkedin_api" }
]
authors = ["Steven Shimizu <[email protected]>"]
description = "Official Python client library for LinkedIn APIs"
homepage = "https://github.com/linkedin-developers/linkedin-api-python-client"
repository = "https://github.com/linkedin-developers/linkedin-api-python-client"
documentation = "https://github.com/linkedin-developers/linkedin-api-python-client"
readme = "README.md"
license = "Proprietary"
keywords = ["linkedin", "api", "rest.li"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.dependencies]
python = "^3.7"
requests = "*"
[tool.poetry.group.dev.dependencies]
curlify = "*"
flask = "*"
pytest = "*"
python-dotenv = "*"
responses = "*"
twine = "*"
pre-commit = "*"