docker-apps-view/pyproject.toml
ksyasuda 184c123e23
Some checks failed
Build Docker Image / build (push) Failing after 8s
Build and Upload Python Package / build (push) Failing after 10s
Initial commit
2024-08-17 18:32:58 -07:00

32 lines
699 B
TOML

[build-system]
requires = ["setuptools>=42", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[project]
name = "docker_apps_view"
description = "Docker Apps View"
readme = "README.md"
authors = [
{ name = "sudacode", email = "suda@sudacode.com" }
]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
requires-python = ">=3.6"
dependencies = [
"flask",
"pandas"
]
scripts = { docker_apps_view = "app:main" }
dynamic = ["version"]
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "node-and-date"
write_to = "version.txt"