-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
37 lines (32 loc) · 1.13 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "socialgenpod"
version = "0.0.1"
dynamic = ["dependencies", "optional-dependencies"]
requires-python = ">= 3.10"
description = "Social Linked Data + Retrieval Augmented Generation Demo"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["MIT Solid", "Social", "Linked Data", "Privacy", "LLM", "Generative AI", "Retrieval Augmented Generation"]
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.scripts]
genpod-chat = "chat_app.main:cli"
genpod-llm = "llm_service.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.toml", "*.yml", "*.json", "*.png"]
"chat_app" = [".streamlit/*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies.llm = { file = ["requirements-llm.txt"] }