CoolFace
Apppublic

mkbrechtel/chatbot

sourceHugging Faceapache-2.0updated 4y agoView on Hugging Face
0likes
pyproject.toml33 linesDownload Raw Back to root
1[project]2name = "chatbot"3description = "my chatbot"4authors = [5    {name = "Markus K Brechtel", email="mkb+chatbot@thengo.net"},6]7license = {file = "LICENSE"}8readme = "README.md"9requires-python = ">=3.6"10 11dynamic = ["version","dependencies"]12 13[tool.setuptools.dynamic]14dependencies = {file = ["requirements.txt"]}15 16[project.urls]17homepage = "https://huggingface.co/spaces/mkbrechtel/chatbot"18#documentation = ""19repository = "https://huggingface.co/spaces/mkbrechtel/chatbot"20 21[build-system]22requires = [23    "setuptools >= 35.0.2",24    "setuptools_scm >= 5.0.0"25]26build-backend = "setuptools.build_meta"27 28[project.scripts]29chatbot = "chatbot:chatbot_cli"30 31[tool.setuptools_scm]32write_to = "chatbot/_version.py"33