-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
38 lines (29 loc) · 878 Bytes
/
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ipatok"
description = "IPA tokeniser"
readme = "README.rst"
authors = [
{name = "pavelsof", email = "mail@pavelsof.com"},
]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
]
keywords = ["IPA", "tokeniser", "tokenizer"]
dynamic = ["version"]
[project.urls]
Home = "https://github.com/pavelsof/ipatok"
Tracker = "https://github.com/pavelsof/ipatok/issues"
Source = "https://github.com/pavelsof/ipatok"
Changelog = "https://github.com/pavelsof/ipatok/blob/master/CHANGELOG.rst"
[tool.ruff]
line-length = 79
[tool.ruff.format]
quote-style = "single"