This repository has been archived by the owner on Dec 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
69 lines (59 loc) · 1.64 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
67
68
69
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "py-xeger"
description = "String generator from Regex"
readme = "README.md"
requires-python = ">=3.6"
authors = [
{ name = "Nguyen Khac Thanh", email = "[email protected]" },
]
license = "MIT"
dynamic = ["version"]
keywords=['regular expressions regexp testing random generator']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 3.6',
'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',
]
[project.optional-dependencies]
dev = [
"mypy",
"ruff",
"pytest==7.3.1",
"pytest-cov==4.0.0",
]
[project.urls]
Homepage = "https://github.com/magiskboy/py-xeger"
Documentation = "https://github.com/magiskboy/py-xeger"
Issues = "https://github.com/magiskboy/py-xeger/issues/"
Source = "https://github.com/magiskboy/py-xeger"
[tool.hatch.version]
path = "xeger/__init__.py"
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.coverage.run]
omit = ["tests/*"]
[tool.coverage.path]
source = "xeger"
[tool.coverage.report]
fail_under = 100
show_missing = true
sort = "Cover"
exclude_lines = [
"elif py_version == 11 and py_version.releaselevel != 'final':",
"import sre_parse",
"sre_parse = re.sre_parse",
"sre_parse = re._parser",
]
[tool.ruff]
ignore = ["E501"]