-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (24 loc) · 1.21 KB
/
setup.py
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
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name='ai_assistantbot', # Name of your package
version='0.0.11', # Version of the package
packages=find_packages(), # Automatically find the packages in your project
install_requires=[], # External dependencies (if any)
description='AssistantBot is a python package which provides an question-answering system designed to process large datasets efficiently. It dynamically matches user queries with relevant data, offering accurate responses and easy training process.', # A short description
long_description=README, # Include the README contents
long_description_content_type='text/markdown', # Content type for the description
author='Wassim Khleifi',
author_email='[email protected]',
url='https://github.com/wassim-khleifi/ai_assistantbot', # Optional: link to your repo
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
)