-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
38 lines (34 loc) · 847 Bytes
/
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
[tool.poetry]
name = "thaifin"
version = "1.0.0"
description = "A Python library for access thai stock fundamental data up to 10+ years."
authors = ["Nutchanon Ninyawee <[email protected]>"]
license = "ISC"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
beautifulsoup4 = "^4.9.1"
requests = "^2.24.0"
lxml = "^4.5.1"
furl = "^2.1.0"
arrow = "^0.16.0"
fuzzywuzzy = "^0.18.0"
python-Levenshtein = { version = "^0.12.0", optional = true }
pandas = "^1.0.5"
numpy = "^1.19.5"
cachetools = "^4.2.1"
tenacity = "^6.3.1"
httpx = "^0.27.0"
pydantic = "^2.7.1"
[tool.poetry.extras]
full = ["python-levenshtein"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.0"
jupyter = "^1.0.0"
tqdm = "^4.47.0"
openpyxl = "^3.0.4"
lxml = "^4.5.1"
pdoc = "^3.0.1"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"