-
Notifications
You must be signed in to change notification settings - Fork 2
/
tmp.toml
72 lines (63 loc) · 1.63 KB
/
tmp.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
70
71
72
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "multivalue"
version = "0.1"
authors = [
{name="Will Held", email="[email protected]" },
{name="Caleb Ziems", email="[email protected]"}
]
description = "A Framework for Cross-Dialectal NLP"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
]
dependencies = [
"stanza==1.8.2",
"transformers",
"peft",
"nltk==3.5",
"numpy ",
"pandas",
"tqdm",
"lemminflect==0.2.2",
"inflect==5.5.2",
"geopy==2.2.0",
"spacy==3.7.4",
]
dynamic = ["version"]
[tool.hatch.build]
include = ["resources/*.json", "resources/*.txt", "resources/*.csv", "resources/*.tsv", "src/"]
dev-mode-dirs = [".", "src", "resources"]
[tool.hatch.build.sources]
"src/multivalue" = "multivalue"
"resources" = "multivalue/resources"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["multivalue"]
[tool.hatch.version]
[project.urls]
"Homepage" = "value-nlp.org"
"Bug Tracker" = "https://github.com/SALT-NLP/multi-value/issues"
[tool.black]
line-length = 119
target-version = ["py310"]
preview = true
[tool.isort]
profile = "black"
multi_line_output = 3
lines_after_imports = 2
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
line_length = 119
src_paths = ["src"]