-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
52 lines (46 loc) · 1.4 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
[project]
name = "varformat"
version = "1.0.0"
authors = [
{ name = "Anna Zhukova" }
]
description = "Format and parse strings with ${variables} of any syntax."
readme = "README.md"
# license = # specified in classifiers
keywords = ["string", "interpolation", "variable", "shell", "format", "parse"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Text Processing",
"Typing :: Typed"
]
requires-python = ">=3.8"
dependencies = [
"regex",
"typing-extensions; python_version < '3.10'"
]
[project.urls]
Repository = "https://github.com/bindreams/varformat"
Issues = "https://github.com/bindreams/varformat/issues"
[tool.pylint.'MESSAGES CONTROL']
disable = "missing-function-docstring, too-many-arguments, too-many-locals"
max-line-length = 120
[tool.pytest.ini_options]
minversion = "6.0"
addopts = [
"--import-mode=importlib",
"--doctest-modules",
"--doctest-glob=README.md",
"--ignore-glob=scripts"
]
doctest_optionflags = "ELLIPSIS"
[tool.black]
line-length = 120