-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
81 lines (73 loc) · 1.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[project]
name = "tackleberry"
version = "0.1.2"
description = "Tackleberry (or TB) is helping you tackle the access to AI"
authors = [
{ name = "Torsten Raudßus", email = "[email protected]" },
]
dependencies = [
"pydantic>=2.0.0",
"typing-extensions>=4.0.0",
"pyyaml>=6.0.0",
]
requires-python = ">=3.10"
readme = "README.md"
license = { text = "MIT" }
[tool.project.metadata]
company = "conflict.industries"
company_url = "https://conflict.industries"
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"flake8>=6.0.0",
"black>=22.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"mock>=5.0.0",
"requests",
"openai",
"ollama",
"transformers",
"groq",
"instructor[groq]",
"anthropic",
"instructor[anthropic]",
"mistralai",
]
ollama = [
"ollama",
]
anthropic = [
"anthropic",
"instructor[anthropic]",
]
openai = [
"openai",
]
groq = [
"groq",
"instructor[groq]",
]
mistral = [
"mistralai",
"instructor",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 88
target-version = ["py310"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
[tool.hatch.build.targets.wheel]
packages = ["tackleberry"]
[tool.pytest]
testpaths = ["tests"]
python_files = "test_*.py"