forked from pysentimiento/pysentimiento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 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
[tool.poetry]
name = "pysentimiento"
version = "0.7.3"
description = "A Transformer-based library for SocialNLP tasks"
authors = ["Juan Manuel Pérez <jmperez@dc.uba.ar>", "Juan Carlos Giudici <jgiudici@dc.uba.ar>", ]
readme = "README.md"
repository = "https://github.com/pysentimiento/pysentimiento/"
homepage = "https://github.com/pysentimiento/pysentimiento/"
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
transformers = ">=4.13.0"
emoji = ">=1.6.1"
datasets = ">=2.10.1"
torch = ">=2.0.0, !=2.0.1"
spacy = ">=3.5.0"
accelerate = ">=0.27.2"
[tool.poetry.dev-dependencies]
fire = "^0.4.0"
pytest = "^6.2.5"
Unidecode = "^1.3.2"
pytorch-lightning = "^1.5.2"
twine = "^3.6.0"
seqeval = "^1.2.2"
scikit-learn = "*"
wandb = "^0.13.9"
ipykernel = "^6.18.0"
ipywidgets = ">=7.0, <8.0"
protobuf = "<= 3.20.1"
[tool.poetry.group.old]
optional = true
[tool.poetry.group.old.dependencies]
fasttext-wheel = "^0.9.2"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.1"
seaborn = "^0.12.2"
matplotlib = "^3.7.2"
evaluate = "^0.4.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"