-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
59 lines (53 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
55
56
57
58
59
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "latin-scansion"
dynamic = ["version"]
description = "Automated Latin scansion"
readme = "README.md"
license = "apache-2.0"
requires-python = ">=3.8"
authors = [
{ name = "Jillian Chang"},
{ name = "Kyle Gorman", email = "[email protected]" },
]
keywords = [
"Latin",
"computational linguistics",
"language",
"natural language processing",
"phonetics",
"phonology",
"speech",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing :: Linguistic",
]
dependencies = [
"protobuf>=3.20.2",
]
[project.scripts]
latin-scan = "latin_scansion.scan:main"
latin-validate = "latin_scansion.validate:main"
[project.urls]
Homepage = "https://github.com/CUNY-CL/latin_scansion"
[tool.hatch.version]
path = "latin_scansion/__init__.py"
[tool.hatch.build.targets.wheel.shared-data]
"LICENSE.txt" = "./LICENSE.txt"
[tool.hatch.build.targets.sdist]
include = [
"/latin_scansion",
]