-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (50 loc) · 1.27 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "dream_team_gpt"
version = "0.0.1"
description = "Pick your dream executive team and watch them brainstorm your idea"
authors = ["Laurence Hook <hookla1976@gmail.com>", "Stepan Sinkov <supercool@duck.com>"]
repository = "https://github.com/hookla/DreamTeamGPT"
readme = "README.md"
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
backoff = "^2.2.1"
click = "~=8.1.7"
loguru = "~=0.7.2"
openai = "~=0.28.1"
python-dotenv = "~=1.0.0"
pyyaml = "~=6.0.1"
tiktoken = "~=0.5.1"
[tool.poetry.group.dev.dependencies]
black = "*"
isort = "*"
mypy = "^1.5.1"
pre-commit = "^3.4.0"
pytest = "*"
pytest-cov = "^4.0.0"
[tool.poetry.group.docs.dependencies]
mkdocs = "^1.4.2"
mkdocs-material = "^9.2.7"
mkdocstrings = {extras = ["python"], version = "^0.23.0"}
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 99
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 99
force_grid_wrap = 0
from_first = true
include_trailing_comma = true
use_parentheses = true
[tool.mypy]
check_untyped_defs = true
disallow_any_unimported = true
disallow_untyped_defs = true
show_error_codes = true
warn_return_any = true
warn_unused_ignores = true
python_version = 3.11
[tool.pytest.ini_options]
testpaths = "tests"