-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (47 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
53 lines (47 loc) · 1.41 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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "piholelongtermstats"
version = "0.2.3"
dependencies = [
"dash==3.0.4",
"pandas==2.2.3",
"plotly==6.0.1",
"psutil==7.1.2"
]
requires-python = ">=3.11"
authors = [
{name = "Davis Thomas Daniel", email = "davisthomasdaniel@gmail.com"},
]
maintainers = [
{name = "Davis Thomas Daniel", email = "davisthomasdaniel@gmail.com"},
]
description = "A dashboard to explore long-term DNS query data from Pi-hole FTL database files."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
keywords = ["dashboard", "pihole", "visualization", "plotly", "dash"]
classifiers = [
"Programming Language :: Python"
]
[project.optional-dependencies]
develop = [
"pytest==9.0.1",
"ruff",
"build==1.3.0",
"twine==6.2.0",
"pytest-cov==7.0.0",
]
[project.urls]
Homepage = "https://github.com/davistdaniel/PiHoleLongTermStats"
Documentation = "https://github.com/davistdaniel/PiHoleLongTermStats"
Repository = "https://github.com/davistdaniel/PiHoleLongTermStats.git"
"Bug Tracker" = "https://github.com/davistdaniel/PiHoleLongTermStats/issues"
[project.scripts]
piholelongtermstats = "piholelongtermstats.app:run"
[tool.setuptools.packages.find]
include = ["piholelongtermstats*"]
exclude = ["docs*", "tests*","screenshots*","build*","dist*"]
[tool.setuptools.package-data]
piholelongtermstats = ["assets/*"]