-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (59 loc) · 1.53 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
66
[build-system]
requires = ["setuptools", "setuptools_scm[toml]", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "semiformal"
dynamic = ["version"]
description = "Tokenizer for semiformal unicode text using TR-29 segmentation"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.7"
authors = [
{ name = "Al Barrentine" },
]
keywords = [
"word",
"tokenizer",
"lexer",
"re2c",
"fsa"
]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/goodcleanfun/semiformal"
Repository = "https://github.com/goodcleanfun/semiformal"
[tool.coverage.run]
parallel = true
source = [
"python/semiformal",
]
context = '${CONTEXT}'
[tool.ruff]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"C", # flake8-comprehensions
"B", # flake8-bugbear
]
ignore = [
"E501", # line too long, handled by black
"B008", # do not perform function calls in argument defaults
"C901", # too complex
]
[tool.setuptools.packages.find]
where = ["python"]
[tool.setuptools.dynamic]
version = {attr = "semiformal.__version__"}