-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 796 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 796 Bytes
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
[tool.poetry]
name = "satnbot"
version = "0.1.0"
description = "Bot trials"
authors = ["fperezsorrosal <fperezsorrosal@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
openai = "^0.27.2"
tweepy = "^4.13.0"
py-cord = "^2.4.1"
requests = "^2.28.2"
beautifulsoup4 = "^4.12.0"
arxiv = "^1.4.3"
pdfminer-six = "^20221105"
clean-text = "^0.6.0"
langchain = "^0.0.153"
pypdf = "^3.8.1"
[tool.poetry.group.dev.dependencies]
black = "^22.8.0"
flake8 = "^5.0.4"
mypy = "^0.971"
pytest = "^7.1.3"
shellcheck-py = "^0.8.0.4"
isort = "^5.12.0"
pre-commit = "^2.20.0"
autoflake = "^1.5.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
[tool.black]
line-length = 120
target-version = ["py39"]