-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
52 lines (47 loc) · 1.31 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
[tool.poetry]
name = "langchain-linebot"
version = "0.1.0"
description = "A LineBot implemented using LangChain, featuring conversation isolation and memory, and implemented using clean architecture for practice."
authors = ["Justin Xiao <[email protected]>"]
license = "MIT license"
readme = "README.md"
[tool.poetry.dependencies]
python = "3.11.4"
cerberus = "1.3.5"
charset-normalizer = "3.3.2"
flask = "2.3.2"
flask-sqlalchemy = "3.1.1"
langchain = "0.0.295"
line-bot-sdk = "3.1.0"
marshmallow = "3.20.1"
pydantic = "1.10.12"
python-dotenv = "^1.0.0"
sqlalchemy = "2.0.19"
werkzeug = "2.3.6"
yfinance = "0.2.28"
psycopg2 = "2.9.7"
openai = "0.27.8"
tiktoken = "0.4.0"
google-search-results = "2.4.2"
[tool.poetry.group.dev.dependencies]
pytest = "7.3.1"
pytest-cov = "4.0.0"
pytest-cover = "3.0.0"
pytest-coverage = "0.0"
pytest-flask = "1.2.0"
pytest-mock = "3.11.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# https://black.readthedocs.io/en/stable/the_black_code_style/current_style.html
[tool.black]
line-length = 100
# https://beta.ruff.rs/docs/settings/
[tool.ruff]
line-length = 100
# https://beta.ruff.rs/docs/rules/
select = ["E", "W", "F"]
ignore = ["F401", "E501"]
# Exclude a variety of commonly ignored directories.
respect-gitignore = true
ignore-init-module-imports = true