Skip to content

Commit

Permalink
Update setup.py and add test_script.py
Browse files Browse the repository at this point in the history
Description:
  • Loading branch information
Jack Hopkins committed Nov 28, 2023
1 parent d7205a7 commit cf80a03
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
from distutils.core import setup

from setuptools import find_packages

setup(
name='tanuki.py', # How you named your package folder (MyLib)
packages=['tanuki'], # Chose the same as "name"
version='0.1.1',
packages=find_packages(), # Chose the same as "name"
version='0.1.2',
license='MIT', # Chose a license from here: https://help.github.com/articles/licensing-a-repository
description='The easiest way to build scalable LLM-powered applications, which gets cheaper and faster over time.',
# Give a short description about your library
Expand All @@ -12,7 +14,7 @@
url='https://github.com/Tanuki/tanuki.py', # Provide either the link to your github or to your website
download_url='https://github.com/Tanuki/tanuki.py/archive/v0.1.0.tar.gz', # I explain this later on
keywords=['python', 'ai', 'tdd', 'alignment', 'tanuki', 'distillation', 'pydantic', 'gpt-4', 'llm', 'chat-gpt', 'gpt-4-api', 'ai-functions'], # Keywords that define your package best
package_dir={'tanuki': 'src'},
package_dir={'tanuki': './src/tanuki'},
install_requires=[
"appdirs~=1.4.4",
"openai==0.28.1",
Expand Down
1 change: 1 addition & 0 deletions test_script.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
import tanuki

0 comments on commit cf80a03

Please sign in to comment.