-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.44 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
54
55
56
57
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "integreat_chat"
description = "Machine Learning Back End for the Integreat Chat functionality"
version = "2024.6.0"
authors = [{name = "Tür an Tür Digitalfabrik gGmbH", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.11"
keywords = [
"Integreat"
]
license = {text = "Apache 2.0 License"}
classifiers = [
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
dependencies = [
"django",
"langchain",
"langchain-community",
"transformers @ git+https://github.com/huggingface/transformers",
"huggingface_hub",
"langchain-ollama",
"numpy",
"langchain_milvus",
"sentence-transformers",
"langchain-huggingface",
"lxml",
"transformers",
"torch",
]
[project.optional-dependencies]
dev = []
[project.urls]
"Homepage" = "https://tuerantuer.de/digitalfabrik"
"Source Code" = "https://github.com/digitalfabrik/integreat-chat"
"Issues" = "https://github.com/digitalfabrik/integreat-chat/issues"
[tool.setuptools]
script-files = ["integreat_chat/manage.py"]
license-files = ["LICENSE"]
[tool.setuptools.packages.find]
include = ["integreat_chat*"]