-
Notifications
You must be signed in to change notification settings - Fork 140
/
setup.py
27 lines (26 loc) · 902 Bytes
/
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
setup(
name='llmsherpa',
version='0.1.4',
description='Strategic APIs to Accelerate LLM Use Cases',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/nlmatics/llmsherpa',
author='Ambika Sukla',
license='MIT',
packages=find_packages(),
install_requires=[
"urllib3"
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Intended Audience :: Legal Industry',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3 :: Only'
],
)