[AUR-387, AUR-425] Add start-project to CLI (#29)

This commit is contained in:
cin-jacky
2023-10-03 13:55:34 +09:00
committed by GitHub
parent d83c22aa4e
commit 205955b8a3
13 changed files with 718 additions and 8 deletions

View File

@@ -0,0 +1,20 @@
import setuptools
setuptools.setup(
name="{{ cookiecutter.project_name }}",
version="0.0.1",
author="{{ cookiecutter.ptl }}",
author_email="{{ cookiecutter.ptl }}@cinnamon.is",
description="Project {{ cookiecutter.project_name }}",
long_description="Project {{ cookiecutter.project_name }}",
url="https://github.com/Cinnamon/kotaemon",
python_requires=">=3",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
"kotaemon@git+ssh://git@github.com/Cinnamon/kotaemon.git",
],
)