From cf80a032143c5dd74801a7498aa9375201ce806d Mon Sep 17 00:00:00 2001 From: Jack Hopkins Date: Tue, 28 Nov 2023 12:32:10 +0000 Subject: [PATCH] Update setup.py and add test_script.py Description: --- setup.py | 8 +++++--- test_script.py | 1 + 2 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 test_script.py diff --git a/setup.py b/setup.py index bf62972..c5d3e05 100644 --- a/setup.py +++ b/setup.py @@ -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 @@ -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", diff --git a/test_script.py b/test_script.py new file mode 100644 index 0000000..9920cad --- /dev/null +++ b/test_script.py @@ -0,0 +1 @@ +import tanuki \ No newline at end of file