-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 766 Bytes
/
pyproject.toml
File metadata and controls
34 lines (29 loc) · 766 Bytes
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
[tool.poetry]
name = "gandalf-linkedin"
version = "0.1.0"
description = "A Python package for Gandalf's professional networking needs"
authors = ["Luc EBERT <l.ebert@yahoo.fr>"]
readme = "README.md"
packages = [{include = "gandalf_linkedin"}]
[tool.poetry.dependencies]
python = "^3.8"
python-dotenv = "^1.0.0"
requests = "^2.31.0"
openai = "^1.12.0"
linkedin-api = "^2.0.3"
pydantic = "^2.6.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
ruff = "^0.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
# Basic linting rules
select = ["E", "F", "I"] # pycodestyle, Pyflakes, and isort
line-length = 88
target-version = "py38"
fix = true
[tool.ruff.format]
quote-style = "double"
indent-style = "space"