-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 793 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
35
36
37
38
39
40
41
42
[project]
name = "plague-ingg"
version = "0.1.0"
description = "Plague InGG - A self-evolving AI agent with tools and memory"
authors = [
{name = "Plague InGG", email = "plague-ingg@example.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"httpx>=0.27",
"python-dotenv>=1.0",
"requests>=2.32.3",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"black>=23.0.0",
"flake8>=6.0.0",
]
[build-system]
requires = ["setuptools>=68.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
[tool.black]
line-length = 88
target-version = ["py312"]
[tool.pytest]
testpaths = ["tests"]
[tool.pylint]
max-line-length = 88
[tool.setuptools]
py-modules = ["llm_settings"]