-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 1.02 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
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[project]
name = "loupe-cli"
version = "0.1.0"
description = "CSV & JSON → beautiful self-contained interactive HTML dashboards. Zero dependencies."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
authors = [{name = "Seven Du", email = "[email protected]"}]
dependencies = []
keywords = ["csv", "json", "html", "dashboard", "data-visualization", "python", "cli", "data-exploration", "zero-dependencies", "table"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Utilities",
]
[project.urls]
Homepage = "https://github.com/Jah-yee/loupe"
Repository = "https://github.com/Jah-yee/loupe"
Issues = "https://github.com/Jah-yee/loupe/issues"
[project.scripts]
loupe = "loupe:main"