updating setup instructions

pull/29/head
Steve Nyemba 3 weeks ago
parent d7d0251e0b
commit ede5a01c4a

@ -0,0 +1,48 @@
[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__"}
Loading…
Cancel
Save