-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.04 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
[tool.poetry]
name = "unbabel-smaug"
version = "0.1.3"
description = "Sentence-level Multilingual Augmentation"
license = "Apache-2.0"
authors = ["Duarte Alves <[email protected]>"]
readme = "README.md"
repository = "https://github.com/Unbabel/smaug"
keywords = [
"Natural Language Processing",
"Data Augmentation"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
packages = [
{ include = "smaug" },
]
include = [
"README.md",
"LICENSE.md",
]
[tool.poetry.scripts]
augment = "smaug.cli:augment"
[tool.poetry.dependencies]
python = "^3.8"
numpy = "^1.21.4"
pandas = "^1.3.4"
sentencepiece = "!=0.1.96"
stanza = "^1.3.0"
torch = "^1.8.2,!=1.13.0"
transformers = "^4.15.0"
nltk = "^3.7"
PyYAML = "^6.0"
packaging = "^21.3"
[tool.poetry.group.dev.dependencies]
pytest = "^7"
black = "^22.3.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"