File size: 240 Bytes
9b9a6d7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
"""
Minimal setup – makes the project pip-installable inside the venv.
"""
from setuptools import setup, find_packages

setup(
    name="chronic_chatbot",
    version="0.1.0",
    packages=find_packages(),
    python_requires=">=3.10",
)