-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
56 lines (50 loc) · 1.21 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 = "auto-EPU"
version = "0.1.0"
description = "Utilzing LLM to automatically construct economic textual indicators."
authors = ["Hsiu-Hsuan Yeh"]
license = "MIT"
readme = "README.md"
packages = [{include = "auto_EPU"}]
[tool.poetry.dependencies]
python = "^3.11"
hydra-core = "^1.3.2"
python-dotenv = "^1.0.1"
loguru = "^0.7.2"
orjson = "^3.9.12"
tqdm = "^4.66.1"
pandas = "^2.2.0"
mlflow = "^2.10.2"
openpyxl = "^3.1.2"
langchain = "^0.1.7"
ckip-transformers = "^0.3.4"
scikit-learn = "^1.4.1.post1"
sentence-transformers = "^2.3.1"
keybert = "^0.8.4"
hvplot = "^0.9.2"
bokeh = "^3.3.4"
wordcloud = "^1.9.3"
matplotlib = "^3.8.3"
selenium = "^4.17.2"
geckodriver = "^0.0.1"
tiktoken = "<0.6.0"
seaborn = "^0.13.2"
plotly = "^5.20.0"
pyzmq = "26.0.3"
llm-research = "0.2.0"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.0"
ipywidgets = "^8.1.1"
jupyter-bokeh = "^3.0.7"
hvplot = "^0.9.1"
pytest = "^7.4.4"
jupyterlab-execute-time = "2.3.1"
jupyterlab = "3.6.6"
jupyterlab-lsp = "4.3.0"
python-lsp-server = {extras = ["all"], version = "^1.8.2"}
poetry-kernel = "^0.1.3"
sphinx = "^7.2.6"
sphinx-rtd-theme = "^2.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"