-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
87 lines (72 loc) · 2.6 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = [ "whey",]
build-backend = "whey"
[project]
name = "dependency-dash"
version = "0.1.0b1"
description = "A fully Open Source dependency dashboard."
readme = "README.rst"
keywords = [ "dashboard", "dependency", "github", "requirement",]
dynamic = [ "requires-python", "classifiers", "dependencies",]
[project.license]
file = "LICENSE"
[[project.authors]]
name = "Dominic Davis-Foster"
email = "[email protected]"
[project.urls]
Homepage = "https://github.com/repo-helper/dependency-dash"
"Issue Tracker" = "https://github.com/repo-helper/dependency-dash/issues"
"Source Code" = "https://github.com/repo-helper/dependency-dash"
[tool.whey]
base-classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Flask",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
]
python-versions = [ "3.8", "3.9", "3.10", "3.11", "3.12",]
python-implementations = [ "CPython",]
platforms = [ "Linux", "macOS",]
license-key = "MIT"
package = "dependency_dash"
additional-files = [
"recursive-include dependency_dash/static/css *.css",
"recursive-include dependency_dash/static/css *.css.map",
"recursive-include dependency_dash/static/js *.js",
"recursive-include dependency_dash/static/webfonts *.woff",
"recursive-include dependency_dash/static/webfonts *.woff2",
"recursive-include dependency_dash/static/webfonts *.eot",
"recursive-include dependency_dash/static/webfonts *.ttf",
"recursive-include dependency_dash/static *.jpg",
"recursive-include dependency_dash/static *.webp",
"recursive-include dependency_dash/static *.avif",
"recursive-include dependency_dash/static *.svg",
"recursive-include dependency_dash/static *.png",
"recursive-include dependency_dash/templates *.html",
"recursive-include dependency_dash/pages *.md",
]
[tool.importcheck]
always = [ "dependency_dash", "dependency_dash.github", "dependency_dash.pypi", "dependency_dash.routes",]
[tool.mypy]
python_version = "3.8"
namespace_packages = true
check_untyped_defs = true
warn_unused_ignores = true
no_implicit_optional = true
show_error_codes = true
incremental = false
[tool.dep_checker]
allowed_unused = [ "gunicorn", "pygments", "setuptools",]
[tool.dep_checker.name_mapping]
github3-py = "github3"
[tool.snippet-fmt]
directives = [ "code-block",]
[tool.snippet-fmt.languages.python]
reformat = true
[tool.snippet-fmt.languages.TOML]
reformat = true
[tool.snippet-fmt.languages.ini]
[tool.snippet-fmt.languages.json]
[tool.dependency-dash."requirements.txt"]
order = 10