-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (53 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
61 lines (53 loc) · 1.37 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
[build-system]
requires = ["hatchling>=1.20, <1.26"]
build-backend = "hatchling.build"
[project]
name = "df-gallery"
version = "0.2.7"
description = "Generate a fast, filterable HTML image gallery from a CSV/Json file. Uses pandas syntax"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{ name = "Freddie Lichtenstein" }
]
keywords = ["images", "df", "gallery", "html", "data-exploration", "pandas", "Dataframe"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Multimedia :: Graphics",
"Topic :: Utilities",
]
# No runtime deps; uses stdlib only
[project.urls]
Homepage = "https://github.com/flicht/df-gallery"
Issues = "https://github.com/flicht/df-gallery/issues"
[project.scripts]
df-gallery = "df_gallery.cli:main"
dfg = "df_gallery.cli:main"
[tool.hatch.build.targets.sdist]
include = [
"src/df_gallery",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.hatch.build.targets.wheel]
packages = ["src/df_gallery"]
[tool.ruff]
line-length = 100
[tool.pytest.ini_options]
pythonpath = ["src"]
addopts = "-q"
[dependency-groups]
dev = [
"build>=1.3.0",
"mypy>=1.17.1",
"pandas>=2.3.2",
"pytest>=8.4.1",
"ruff>=0.12.10",
"twine>=6.1.0",
]