-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
69 lines (60 loc) · 1.6 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
57
58
59
60
61
62
63
64
65
66
67
68
69
[build-system]
requires = ["poetry>=1.8"]
build-backend = "poetry.core.masonry.api"
[tool.setuptools]
include-package-data = false
[tool.poetry]
name = "udtube"
version = "0.1.2"
description = "Neural morphological analysis"
readme = "README.md"
license = "Apache-2.0"
authors = [
"Daniel Yakubov <[email protected]>",
"Kyle Gorman <[email protected]"
]
keywords = [
"computational linguistics",
"morphology",
"natural language processing",
"language",
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Text Processing :: Linguistic",
]
include = ["udtube*"]
exclude = ["configs*", "examples*", "scripts*" ]
[tool.poetry.dependencies]
jsonargparse = { version = "^4.32.0", extras = ["signatures"] }
lightning = "^2.4.0"
python = "^3.9"
pyyaml = "^6.0"
transformers = "^4.44.0"
torch = "^2.4.0"
torchmetrics = "^1.4.0.post0"
wandb = "^0.18.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
black = "^24.4.2"
build = "^1.2.1"
flake8 = "^7.1.0"
twine = "^6.0.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
parameterized = "^0.9.0"
pytest = "^7.4.4"
[tool.poetry.scripts]
udtube = "udtube.cli:main"
[project.urls]
homepage = "https://github.com/CUNY-CL/udtube"