-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
93 lines (86 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[tool.poetry]
name = "biochatter"
version = "0.8.0"
description = "Backend library for conversational AI in biomedicine"
authors = [
"Sebastian Lobentanzer <[email protected]>",
"Shaohong Feng <[email protected]>",
"Andreas Maier <[email protected]"
]
repository = "https://github.com/biocypher/biochatter"
license = "MIT"
readme = "README.md"
packages = [
{ include = "biochatter" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Natural Language :: English",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
[project.urls]
Homepage = "https://biochatter.org"
Documentation = "https://biochatter.org"
Repository = "https://github.com/biocypher/biochatter.git"
Issues = "https://github.com/biocypher/biochatter/issues"
[tool.poetry.dependencies]
python = ">=3.10,<3.13"
langchain = "^0.2.5"
openai = "^1.1.0"
pymupdf = "^1.22.3"
pymilvus = "2.2.8"
nltk = "^3.8.1"
redis = "^4.5.5"
retry = "^0.9.2"
stringcase = "^1.2.0"
transformers = "^4.30.2"
streamlit = { version = "^1.23.1", optional = true }
gTTS = { version = "^2.3.2", optional = true }
xinference = { version = "^0.14.1", optional = true }
rsa = "^4.9"
cryptography = "^41.0.7"
neo4j-utils = "^0.0.7"
seaborn = "^0.13.2"
rouge_score = "0.1.2"
evaluate = "^0.4.1"
pillow = ">=10.2,<11.0"
pdf2image = "^1.16.0"
langchain-community = "^0.2.5"
langgraph = "^0.1.5"
langchain-openai = "^0.1.14"
tiktoken = "0.7.0"
grandalf = "^0.8"
importlib-metadata = "^8.0.0"
colorcet = "^3.1.0"
langchain-anthropic = "^0.1.22"
anthropic = "^0.33.0"
[tool.poetry.extras]
streamlit = ["streamlit"]
podcast = ["gTTS"]
xinference = ["xinference"]
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
bump2version = "^1.0.1"
mkdocs-material = {extras = ["imaging"], version = "^9.5.10"}
mkdocstrings = {extras = ["python"], version = "^0.24.0"}
pre-commit = ">=2.17.0"
mkdocs-table-reader-plugin = "^2.0.3"
scipy = "^1.12.0"
shortuuid = "^1.0.13"
coverage = "^7.6.0"
coverage-badge = "^1.1.1"
mkdocs-redirects = "^1.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
select = ["ALL"]
target-version = "py310"
[tool.ruff.lint.pycodestyle]
max-doc-length = 80