-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
50 lines (42 loc) · 1001 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
49
50
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "llmdantic"
authors = [{ name = "firattamur", email = "[email protected]" }]
readme = "README.md"
license = { file = "LICENSE" }
dependencies = [
"langchain >=0.1.6",
"langchain_openai >=0.0.5",
"regex >=2023.12.25",
]
requires-python = ">=3.8"
classifiers = ["Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ['version', 'description']
[project.urls]
Home = "https://github.com/firattamur/llmdantic"
[project.optional-dependencies]
test = [
"pytest",
"ruff",
"mypy",
"isort",
"black",
"black",
"flit",
"coverage",
"bump2version",
]
[tool.isort]
profile = "black"
skip = ["__init__.py"]
[tool.ruff]
line-length = 120
[tool.coverage.run]
branch = true
omit = ["tests/*", "*/__init__.py"]