-
Notifications
You must be signed in to change notification settings - Fork 14
/
pyproject.toml
66 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "uroman"
version = "1.3.1.1"
dependencies = [
"regex>=2024.5.15",
]
requires-python = ">=3.10"
authors = [
{name = "Ulf Hermjakob", email = "[email protected]"},
]
maintainers = [
{name = "Ulf Hermjakob", email = "[email protected]"},
]
description = "uroman is a universal romanizer. It converts text in any script to the standard Latin alphabet."
readme = "README.md"
license = {file = "LICENSE.txt"}
keywords = ['machine translation', 'romanization', 'NLP', 'natural language processing', 'computational linguistics', 'string similarity']
classifiers = [ # copied from https://pypi.org/classifiers/
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Topic :: Text Processing',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3 :: Only',
]
[project.urls]
Homepage = "https://github.com/isi-nlp/uroman"
Repository = "https://github.com/isi-nlp/uroman"
"Bug Tracker" = "https://github.com/isi-nlp/uroman/issues"
[project.scripts]
uroman = "uroman.uroman:main"
[tool.hatch.build.targets.wheel]
include = [
"uroman.py",
"__init__.py",
"__main__.py",
"data",
"README.md",
"LICENSE.txt",
"pyproject.toml",
"requirements.txt",
"mini-test",
]
[tool.hatch.build.targets.sdist]
include = [
"uroman.py",
"__init__.py",
"__main__.py",
"data",
"README.md",
"LICENSE.txt",
"pyproject.toml",
"requirements.txt",
"mini-test",
]