python package restructuring
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal file
@@ -0,0 +1,22 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='chatbug',
|
||||
version='0.1.0',
|
||||
description='A conversational AI chatbot',
|
||||
author='Florin Tobler',
|
||||
author_email='florin.tobler@hotmail.com',
|
||||
packages=find_packages(exclude=["tests"]),
|
||||
install_requires=[
|
||||
'transformers',
|
||||
'accelerate',
|
||||
'bitsandbytes',
|
||||
'pytest',
|
||||
'pywebview',
|
||||
],
|
||||
# entry_points={
|
||||
# 'console_scripts': [
|
||||
# 'chatbug=chatbug.app:main',
|
||||
# ],
|
||||
# },
|
||||
)
|
Reference in New Issue
Block a user