-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
54 lines (50 loc) · 1.46 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
[project]
name = "udtube"
version = "0.1.4"
description = "Neural morphological analysis"
license = { text = "Apache 2.0" }
readme = "README.md"
requires-python = ">=3.10,<3.14"
authors = [
{ name = "Daniel Yakubov", email = "[email protected]" },
{ name = "Kyle Gorman", email = "[email protected]" },
]
keywords = [
"computational linguistics",
"morphology",
"natural language processing",
"language",
]
classifiers = [
"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",
]
dependencies = [
"accelerate>=1.6.0,<2.0.0",
"jsonargparse[signatures]>=4.28.0,<5.0.0",
"lightning>=2.4.0,<3.0.0",
"pyyaml>=6.0,<7.0",
"transformers>=4.44.0,<5.0.0",
"torch>=2.4.0,<3.0.0",
"torchmetrics>=1.4.0.post0,<2.0.0",
"wandb>=0.18.0,<1.0.0",
]
[build-system]
requires = ["setuptools >= 72.1.0", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
homepage = "https://github.com/CUNY-CL/udtube"
[tool.setuptools.packages.find]
include = ["udtube*"]
exclude = ["configs*", "examples*", "scripts*"]
[project.scripts]
udtube = "udtube.cli:main"
[tool.setuptools]
include-package-data = false