Files
wehub-resource-sync da6a09ff09
Auto Bump and Release / auto-bump-and-release (push) Has been cancelled
style-check / pre-commit (push) Has been cancelled
unit-test / unit testing with python (push) Has been cancelled
unit-test / unit testing with python 3.10 (push) Has been cancelled
unit-test / unit testing with python 3.11 (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:39:49 +08:00

21 lines
659 B
Python

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",
],
)