-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.25 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
28
29
30
31
from setuptools import setup, find_packages
setup(
name='give_up_the_func',
version='0.1.0',
author='gravitymonkey',
author_email='jason@gravitymonkey.com',
description='A helper library for using function calling on local LLMs.',
long_description=open('README.md').read(), # Long description read from the README.md
long_description_content_type='text/markdown',
url='https://github.com/gravitymonkey/give_up_the_func',
packages=find_packages(),
install_requires=[
'openai',
'typing',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers', # Target audience
'License :: OSI Approved :: MIT License', # License
'Programming Language :: Python :: 3', # Programming language
'Programming Language :: Python :: 3.7', # Specify which python versions are supported
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
python_requires='>=3.7', # Minimum version requirement of the package
keywords='chatbot, functions, LLM, AI',
include_package_data=True,
)