-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.28 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
[tool.poetry]
name = "wikimpacts"
version = "0.1.0"
description = "Dependencies for parsing and normalizing environmental impact data"
authors = ["Shorouq Zahra <shorouq.zahra@ri.se>", "Ni Li <ni.li@vub.be>", "Murathan Kurfali <murathan.kurfali@ri.se>"]
readme = "README.md"
package-mode = true
packages = [{include = "Database/scr"}]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
normalizer = "^0.2.1"
dateparser = "^1.2.0"
text2num = "^2.5.0"
pandas = "^2.0.0"
shortuuid = "^1.0.13"
pre-commit = "^3.2.0"
spacy = {extras = ["transformers"], version = "^3.7.5"}
regex = "^2023.12.25"
num2words = "^0.5.13"
geopy = "^2.4.1"
requests-cache = "^1.2.0"
pycountry = "22.3.5"
fastparquet = "2023.10.1"
pytest = "^8.2.2"
iso4217 = "^1.11.20220401"
en-core-web-trf = {url = "https://github.com/explosion/spacy-models/releases/download/en_core_web_trf-3.7.3/en_core_web_trf-3.7.3-py3-none-any.whl"}
tqdm = "^4.66.5"
openai = "^1.42.0"
python-dotenv = "^1.0.1"
unidecode = "^1.3.8"
seaborn = "^0.13.2"
pandarallel = "^1.6.5"
[tool.poetry.group.dev.dependencies]
ipykernel = "^6.29.3"
openpyxl = "^3.1.2"
types-tqdm = "^4.66.0.20240417"
pandas-stubs = "v2.0.3.230814"
[tool.poetry.group.tests.dependencies]
pytest = "^8.2.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"