File size: 844 Bytes
d92c997 7712b52 6811519 7712b52 3bc02c2 d92c997 e5aac56 d92c997 6ebe7bd e5aac56 d92c997 7712b52 e5aac56 3bc02c2 6064b0b 6811519 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
from setuptools import setup, find_packages
# Read the contents of requirements.txt
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("README.md") as f:
readme = f.read()
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",
long_description=readme,
long_description_content_type="text/markdown",
entry_points={
"console_scripts": [
"vectorstore_creator=edubotics_core.vectorstore.store_manager:main",
],
},
)
|