-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (55 loc) · 1.46 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
[tool.poetry]
name = "chat-research"
version = "0.1.13"
description = "Use ChatGPT to accelerator your research."
authors = ["Yangyang Li <yangyang.li@northwestern.edu>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/cauliyang/ChatResearch"
repository = "https://github.com/cauliyang/ChatResearch"
documentation = "https://github.com/cauliyang/ChatResearch"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.9"
arxiv = ">=1.4.3,<3.0.0"
pymupdf = "^1.21.1"
requests = "^2.28.2"
tiktoken = ">=0.3.3,<0.7.0"
tenacity = "^8.2.2"
pybase64 = "^1.2.3"
pillow = ">=9.5,<11.0"
openai = ">=0.27.2,<1.13.0"
markdown = "^3.4.3"
bs4 = "^0.0.1"
loguru = ">=0.6,<0.8"
rich = "^13.3.3"
pydantic = ">=1.10.7,<3.0.0"
types-requests = "^2.28.11.17"
toml = "^0.10.2"
aiohttp = {extras = ["speedups"], version = "^3.8.4"}
fake-useragent = "^1.1.3"
[tool.poetry.scripts]
chatre = "chat_research.__main__:cli"
[tool.ruff]
line-length = 120
extend-ignore = ["E501"]
[tool.isort]
profile = "black"
[tool.poetry.group.dev.dependencies]
ruff = ">=0.0.260,<0.2.2"
black = "^23.3.0"
isort = "^5.12.0"
ipdb = "^0.13.13"
ipython = "^8.12.0"
pytest = "^7.2.2"
pytest-sugar = ">=0.9.6,<1.1.0"
nox = ">=2022.11.21,<2024.0.0"
nox-poetry = "^1.0.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"