-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 1.98 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (75 loc) · 1.98 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "yini-parser"
version = "0.2.0b1"
description = "Official Python parser for YINI, an INI-inspired, indentation-insensitive configuration format with clear nested sections and explicit structure."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Marko K. Seppänen" }
]
maintainers = [
{ name = "Marko K. Seppänen" }
]
keywords = [
"yini",
"configuration",
"config",
"parser",
"ini",
"antlr",
"data-format",
"configuration-file",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Typing :: Typed"
]
dependencies = [
"antlr4-python3-runtime==4.13.2",
]
[project.optional-dependencies]
dev = [
"pytest>=8",
"ruff>=0.8",
"mypy>=1.13",
"build>=1.2",
"twine>=5",
]
[project.urls]
Homepage = "https://yini-lang.org?utm_campaign=yini_parser_python&utm_content=pyproject"
Repository = "https://github.com/YINI-lang/yini-parser-python"
Specification = "https://yini-lang.org/refs/specification?utm_campaign=yini_parser_python&utm_content=pyproject"
Issues = "https://github.com/YINI-lang/yini-parser-python/issues"
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
pythonpath = ["src"]
[tool.ruff]
exclude = [
"src/yini_parser/grammar/generated",
]
[tool.mypy]
mypy_path = "src"
packages = ["yini_parser"]
exclude = [
"src/yini_parser/grammar/generated/.*",
]
ignore_missing_imports = true
explicit_package_bases = true
[[tool.mypy.overrides]]
module = "yini_parser.grammar.generated.*"
follow_imports = "skip"
ignore_errors = true