-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
from setuptools import setup, find_packages | ||
|
||
# Define your package's metadata and other options here | ||
setup( | ||
name='cli-assistants', # Your package name, should be unique on PyPI | ||
version='0.1.0', # Start with a small version, following semantic versioning | ||
author='Juan Wisznia', # Your name or your organization's name | ||
author_email='[email protected]', # Your email or your organization's contact email | ||
description='A small yet powerful script to invoke OpenAI Assistants through our CLI.', # Short description of your package | ||
long_description=open('README.md').read(), # Your README file's content | ||
long_description_content_type='text/markdown', # Type of your README file's content | ||
url='https://github.com/juanwisz/cli-assistants', # URL to your package's repository | ||
packages=find_packages(), # Automatically find and include all packages | ||
install_requires=[ | ||
# List your package's dependencies here | ||
# For example, if your package depends on requests, you'd put 'requests' | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
'gpt-assist=gpt_assistants_cli.script:main', # Adjust the module path as necessary | ||
], | ||
}, | ||
classifiers=[ | ||
# Choose your license as you wish | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
python_requires='>=3.7', # Specify the minimum Python version required | ||
) | ||
|