File size: 565 Bytes
d92c997 7712b52 6811519 7712b52 d92c997 e5aac56 d92c997 6ebe7bd e5aac56 d92c997 7712b52 e5aac56 6811519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from setuptools import setup, find_packages
# Read the contents of requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="edubotics-core",
version="0.1.0",
packages=find_packages(),
package_dir={"edubotics-core": "edubotics_core"},
python_requires=">=3.7",
install_requires=requirements,
description="Core modules for edubotics-based LLM AI chatbots",
author="Xavier Thomas, Farid Karimli, Tom Gardos",
url="https://github.com/edubotics-ai/edubot-core",
license="MIT",
)
|