-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.36 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
[project]
name = "fastui-chat"
version = "0.3.4"
description = "Minimalistic chatbot ui using fastapi, fastui and langchain."
authors = [{ name = "Shroominic", email = "contact@shroominic.com" }]
dependencies = ["funcchain>=0.3.1", "fastui[fastapi]>=0.4"]
readme = "README.md"
requires-python = ">= 3.10"
license = "MIT"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
"Intended Audience :: Developers",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = [
"mypy>=1.7.1",
"ruff>=0.1.8",
"python-dotenv>=1",
"redis>=5.0.1",
"langchain_community",
"uvicorn>=0.25",
]
[tool.rye.scripts]
startapp = "python examples/simple_chatbot.py"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/fastui_chat"]
[tool.mypy]
mypy_path = "src/"
ignore_missing_imports = true
follow_imports = "skip"
exclude = "(fastui/.*|venv/.*|dist/.*|wheels/.*|.*egg-info)"
[tool.ruff]
select = ["E", "F", "I"]