-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (36 loc) · 1.04 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
[tool.poetry]
name = "pyview-example-ai-chat"
description = "pyview example with ai chat"
authors = [
"Larry Ogrodnek <[email protected]>",
]
license = "MIT"
readme = "readme.md"
package-mode = false
documentation = "https://github.com/pyview/pyview-example-ai-chat"
homepage = "https://github.com/pyview/pyview-example-ai-chat"
repository = "https://github.com/pyview/pyview-example-ai-chat"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
packages = [
{ include = "pyview_example_ai_chat", from = "src" }
]
[tool.poetry.dependencies]
python = ">=3.10.12,<3.12.0"
openai = "^1.44.1"
markdown = "^3.7"
pygments = "^2.18.0"
pyview-web = "^0.0.25"
[tool.poetry.dev-dependencies]
ruff = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"