-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
65 lines (60 loc) · 1.66 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools>=77.0.3" ]
[project]
name = "dbreport"
description = "Generate html reports of views in a sqlite3 database"
readme = "README.md"
keywords = [ "html", "report", "sqlite", "sqlite3" ]
license = { text = "MIT" }
authors = [ { name = "Joseph Contreras", email = "26684136+JosephJContreras@users.noreply.github.com" } ]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dynamic = [ "version" ]
dependencies = [ "beautifulsoup4", "jinja2" ]
optional-dependencies.dev = [
"beautifulsoup4",
"black",
"build",
"flake8",
"isort",
"pre-commit",
"pylint",
"pyproject-fmt",
"pytest",
"pytest-cov",
"sphinx",
"text-unidecode",
"validate-pyproject[all]",
]
urls.Homepage = "https://dbreport.readthedocs.io/en/latest/index.html"
[tool.setuptools]
dynamic.version = { attr = "dbreport.__version__" }
package-data.dbreport = [
"templates/*.j2",
"templates/*.json",
"templates/static/css/*.css",
]
package-data."*" = [ "License.txt" ]
packages.find.where = [ "." ]
[tool.black]
line-length = 88
[tool.isort]
force_alphabetical_sort_within_sections = true
group_by_package = true
lines_between_sections = 1
lines_between_types = 1
multi_line_output = 3
profile = "black"
[tool.pytest]
ini_options.filterwarnings = []