Skip to content

Commit

Permalink
Fix/versions (#104)
Browse files Browse the repository at this point in the history
* Commit subject: Fix versions in project files

Commit description:

* Commit subject line: Update version to 0.1.0

Commit description:

* Commit subject line: Fix package path in setup.py

Description: This commit fixes the package path in the setup.py file. Previously, the packages were defined as 'src/tanuki', but it has been changed to 'tanuki' to match the package name. Additionally, the version has been updated to '0.1.0'.

---------

Co-authored-by: Jack Hopkins <jack@raveler.co.uk>
  • Loading branch information
JackHopkins and Jack Hopkins committed Nov 28, 2023
1 parent 5327a66 commit a3af65a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='tanuki.py', # How you named your package folder (MyLib)
packages=['src/tanuki'], # Chose the same as "name"
packages=['tanuki'], # Chose the same as "name"
version='0.1.0', # Start with a small number and increase it with every change you make
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.',
Expand Down

0 comments on commit a3af65a

Please sign in to comment.