mirror of http://localhost:9400/cloud/cms
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
TOML
48 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=61.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "qcms"
|
|
dynamic = ["version"]
|
|
authors = [
|
|
{email = "info@the-phi.com"},
|
|
]
|
|
description = ""
|
|
readme = "README.md"
|
|
license = {text = "MIT"}
|
|
keywords = ["cms", "www", "https", "flask", "data-transport"]
|
|
classifiers = [
|
|
"Topic :: Utilities",
|
|
"License :: OSI Approved :: MIT License",
|
|
]
|
|
dependencies = [
|
|
"flask",
|
|
"gitpython",
|
|
"termcolor",
|
|
"flask-session",
|
|
"mistune",
|
|
"typer",
|
|
"data-transport @ git+https://github.com/lnyemba/data-transport.git",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://healthcareio.the-phi.com/git/code/transport.git"
|
|
|
|
[project.scripts]
|
|
qcms = "qcms:main"
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
zip-safe = false
|
|
|
|
[tool.setuptools.packages.find]
|
|
include = ["meta", "cms", "cms.*"]
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "meta.__version__"}
|
|
|
|
# If you have a meta.py file, you might also want to include the author dynamically:
|
|
# [tool.setuptools.dynamic]
|
|
# version = {attr = "meta.__version__"}
|
|
# authors = {attr = "meta.__author__"} |