poc/project/llmclipboard/setup.py
2025-03-02 14:28:16 +08:00

35 lines
946 B
Python

from setuptools import setup, find_packages
with open('README.md', 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name='llmclipboard',
version='0.1.0',
author='Your Name',
author_email='your.email@example.com',
description='AI-powered clipboard manager with semantic search',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=[
'PySide6>=6.4.0',
'openai>=0.27.0',
'python-dotenv>=0.21.0',
'nltk>=3.8.1',
'numpy>=1.24.2',
'transformers>=4.28.1'
],
entry_points={
'console_scripts': [
'llmclipboard=llmclipboard.app:main'
]
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.8',
)