2024-08-17 18:32:58 -07:00
|
|
|
[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"]
|
|
|
|
|
2024-08-17 18:53:21 -07:00
|
|
|
[tool.setuptools.dynamic]
|
|
|
|
version = {file = "version.txt"}
|