Switch to unified view

a b/aiagents4pharma/talk2scholars/pyproject.toml
1
[build-system]
2
requires = ["setuptools", "wheel"]
3
build-backend = "setuptools.build_meta"
4
5
[project]
6
name = "talk2scholars"
7
8
description = "An agent for searching/recommending articles with zotero integration"
9
10
readme = "README.md"
11
requires-python = ">=3.12"
12
classifiers = [
13
  "Programming Language :: Python :: 3",
14
  "License :: OSI Approved :: MIT License",
15
  "Operating System :: OS Independent",
16
]
17
18
dependencies = [
19
  "ipykernel==6.29.5",
20
  "ipython==8.31.0",
21
  "langchain-openai==0.3.0",
22
  "langgraph==0.2.62",
23
  "openai==1.59.6",
24
  "pandas==2.2.3",
25
  "pydantic==2.10.5",
26
  "pyzotero==1.6.9",
27
  "requests==2.32.3",
28
  "streamlit==1.41.1",
29
  "tabulate==0.9.0",
30
]
31
dynamic = ["version"]
32
33
# Package discovery for the submodule
34
[tool.setuptools]
35
packages = [
36
  "talk2scholars",
37
  "talk2scholars.agents",
38
  "talk2scholars.tools",
39
  "talk2scholars.state",
40
  "talk2scholars.configs",
41
]