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.
		
		
		
		
		
			
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			TOML
		
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.7 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 = "LICENSE"}
 | 
						|
keywords = ["cms", "www", "https", "flask", "data-transport"]
 | 
						|
classifiers = [
 | 
						|
    "License :: OSI Approved :: MIT License",
 | 
						|
    "Topic :: Utilities",
 | 
						|
]
 | 
						|
dependencies = [
 | 
						|
    "flask",
 | 
						|
    "gitpython", "flask-jwt-extended",
 | 
						|
    "termcolor",
 | 
						|
    "flask-session",
 | 
						|
    "mistune","plugin-ix@git+https://github.com/lnyemba/plugins-ix",
 | 
						|
    "numpy","pandas",
 | 
						|
    "typer","smart-open", "pyncclient"
 | 
						|
]
 | 
						|
[project.optional-dependencies]
 | 
						|
sql   = ["data-transport @ git+https://github.com/lnyemba/data-transport#egg=data-transport"]
 | 
						|
nosql   = ["data-transport[nosql] @ git+https://github.com/lnyemba/data-transport#egg=data-transport"]
 | 
						|
cloud   = ["data-transport[cloud] @ git+https://github.com/lnyemba/data-transport#egg=data-transport"]
 | 
						|
warehouse = ["data-transport[warehouse] @ git+https://github.com/lnyemba/data-transport#egg=data-transport"]
 | 
						|
all     = ["data-transport[all] @ git+https://github.com/lnyemba/data-transport#egg=data-transport"]
 | 
						|
 | 
						|
[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
 | 
						|
script-files = ["bin/qcms","bin/qcms.bat"]
 | 
						|
 | 
						|
[tool.setuptools.packages.find]
 | 
						|
include = ["cms", "cms.*"]
 | 
						|
 | 
						|
[tool.setuptools.dynamic]
 | 
						|
version = {attr = "cms.meta.__version__"}
 | 
						|
#authors = {attr = "meta.__author__"}
 | 
						|
 | 
						|
# 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__"}
 |