-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1000 Bytes
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1000 Bytes
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
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
name = "lbtff"
dynamic = ["version"]
authors = [
{name = "Patrick Erich", email = "git@patrickerich.email"},
]
description = "Line based text file filter"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)',
"Topic :: Utilities",
]
[project.scripts]
lbtff = "lbtff.cli:main"
[project.urls]
Home = "https://github.com/patrickerich/lbtff"
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"if 0:",
"if __name__ == .__main__.:",
]
fail_under = 100
[tool.coverage.run]
branch = true
source = ["lbtff"]
[tool.flit.sdist]
exclude = ["docs"]
[tool.lbtff.vars]
package_name = "lbtff"
version_cmd = "lbtff --version"
version_index = 1