-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
48 lines (39 loc) · 970 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
37
38
39
40
41
42
43
44
45
46
47
48
[tool.poetry]
name = "few_shot"
version = "0.3.0"
description = "<A simple decorator for injecting few-shot examples into a function docstring, validating against its type hints.>"
authors = ["SlapDrone <[email protected]>"]
license = "MIT"
packages = [{include = "few_shot"}]
[tool.poetry.dependencies]
python = "^3.8"
pydantic = "^1.8.2"
[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
mypy = "*"
black = "*"
ruff = "*"
jupyter = "^1.0.0"
[tool.poetry.extras]
marvin = ["marvin"]
function = ["openai-function-call"]
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
[tool.mypy]
ignore_missing_imports = "True"
disallow_untyped_defs = "True"
exclude = ["notebooks", "build", "examples"]
[tool.ruff]
ignore = ["E501"]
exclude = [
".venv",
"__pycache__",
".ipynb_checkpoints",
".mypy_cache",
".ruff_cache",
"examples",
"notebooks",
]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"