-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.1 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
[tool.poetry]
name = "sci_watch"
version = "1.0.1"
description = "Scientific Monitoring Tool"
license = "MIT"
readme = "README.md"
authors = ["Aghiles and Lila"]
maintainers = ["Aghiles Azzoug <[email protected]>"]
keywords = [
"Scientific Monitoring"
]
[tool.poetry.dependencies]
python = ">=3.10,<3.12"
pytz = "^2023.3"
arxiv = "^2.1.0"
jinja2 = "^3.1.2"
tenacity = "^8.2.2"
beautifulsoup4 = "^4.12.2"
lark = "^1.1.5"
pydantic = { extras = ["dotenv"], version = "^1.10.9" }
coloredlogs = "^15.0.1"
verboselogs = "^1.7"
requests = "^2.31.0"
toml = "^0.10.2"
langchain = "^0.0.292"
openai = "^0.28.0"
pymsteams = "^0.2.2"
slack-sdk = "^3.26.2"
[tool.poetry.group.dev.dependencies]
coverage = "^7.2.7"
black = "23.7.0"
pytest = "^7.4.0"
isort = "^5.12.0"
vulture = "^2.7"
pre-commit = "^3.3.3"
pylint = "^2.17.4"
pytest-html = "^3.2.0"
pytest-mock = "^3.11.1"
sphinx = "5.0.2"
sphinx-rtd-theme = "^1.2.2"
igraph = "^0.10.6"
plotly = "^5.15.0"
[tool.vulture]
min_confidence = 80
sort_by_size = true
verbose = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"