Skip to content

Commit

Permalink
added setup.py back
Browse files Browse the repository at this point in the history
Signed-off-by: WayneWang86 <[email protected]>
  • Loading branch information
WayneWang86 committed Jun 18, 2023
1 parent 3d31b97 commit a55d671
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup

setup(
name="llm_client",
version="0.0.1",
author="Patrick Fernandes",
author_email="[email protected]",
url="",
packages=find_packages(exclude=["tests"]),
python_requires=">=3.7",
setup_requires=[],
install_requires=[
'requests'
],
)

0 comments on commit a55d671

Please sign in to comment.