docker-apps-view/pyproject.toml
ksyasuda 8d05d1b7c3
All checks were successful
Build Docker Image / build (push) Successful in 24s
Build and Upload Python Package / build (push) Successful in 11s
Update pyproject and build script to read from version file
2024-08-17 18:53:21 -07:00

30 lines
646 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.dynamic]
version = {file = "version.txt"}