-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.1 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
[tool.poetry]
name = "manifest"
version = "0.6.0"
description = "Use an LLM to execute code"
homepage = "https://github.com/amoffat/manifest"
repository = "https://github.com/amoffat/manifest"
authors = ["Andrew Moffat <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["llm", "ai"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
include = [
"README.md",
"LICENSE",
"manifest/",
]
exclude = [
"manifest/**/tests",
"manifest/**/test_*",
]
[tool.poetry.dependencies]
python = "^3.11"
openai = "^1.40.1"
jinja2 = "^3.1.4"
python-dotenv = "^1.0.1"
lxml = "^5.2.2"
jsonschema = "^4.23.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.1"
pytest = "^8.3.2"
types-jsonschema = "^4.23.0.20240712"
lxml-stubs = "^0.5.1"
black = "^24.8.0"
flake8 = "^7.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"