Fix package definition, add shiv doc

This commit is contained in:
2022-09-27 15:40:00 -06:00
parent 8be1d6fad5
commit 2f94da47d8
2 changed files with 34 additions and 2 deletions
+2 -2
View File
@@ -6,7 +6,7 @@ with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
setup(
name = 'laconic-stack-orchestrator',
version = '0.0.3',
version = '0.0.5',
author = 'Cerc',
author_email = 'info@cerc.io',
license = 'GNU Affero General Public License',
@@ -14,7 +14,7 @@ setup(
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/cerc-io/stack-orchestrator',
py_modules = ['orchestrator', 'app'],
py_modules = ['cli', 'app'],
packages = find_packages(),
install_requires = [requirements],
python_requires='>=3.7',