-
Notifications
You must be signed in to change notification settings - Fork 19
/
pyproject.toml
56 lines (51 loc) · 1.47 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
[build-system]
requires = ["setuptools >= 75.3.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["yoyodyne*"]
exclude = ["examples*"]
[project]
name = "yoyodyne"
version = "0.2.17"
description = "Small-vocabulary neural sequence-to-sequence models"
readme = "README.md"
requires-python = ">= 3.9"
license = { text = "Apache 2.0" }
authors = [
{name = "Adam Wiemerslage"},
{name = "Kyle Gorman"},
{name = "Travis Bartley"},
]
keywords = [
"computational linguistics",
"morphology",
"natural language processing",
"language",
]
dependencies = [
"maxwell >= 0.2.5",
# TODO: allow >= 2.0.0 once we we migrate to lightning >= 2.0.0".
"numpy >= 1.26.0, < 2.0.0",
"lightning >= 1.7.0, < 2.0.0",
"torch >= 2.5.1",
"wandb >= 0.18.5",
]
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",
]
[project.scripts]
yoyodyne-predict = "yoyodyne.predict:main"
yoyodyne-train = "yoyodyne.train:main"
[project.urls]
homepage = "https://github.com/CUNY-CL/yoyodyne"