-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Commit subject: Fix versions in project files Commit description: * Commit subject line: Update version to 0.1.0 Commit description: --------- Co-authored-by: Jack Hopkins <[email protected]>
- Loading branch information
1 parent
94d3625
commit 5327a66
Showing
3 changed files
with
45 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# file GENERATED by distutils, do NOT edit | ||
setup.cfg | ||
setup.py | ||
src/tanuki/__init__.py | ||
src/tanuki/assertion_visitor.py | ||
src/tanuki/bloom_filter.py | ||
src/tanuki/constants.py | ||
src/tanuki/function_modeler.py | ||
src/tanuki/register.py | ||
src/tanuki/repair.py | ||
src/tanuki/utils.py | ||
src/tanuki/validator.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = tanuki.py | ||
version = 1.0.0 | ||
version = 0.1.0 | ||
author = Jack Hopkins | ||
author_email = [email protected] | ||
description = The easiest way to build scalable LLM-powered applications, which gets cheaper and faster over time. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
from distutils.core import setup | ||
|
||
setup( | ||
name='tanuki.py', # How you named your package folder (MyLib) | ||
packages=['src/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.', | ||
# Give a short description about your library | ||
author='Jack Hopkins', # Type in your name | ||
author_email='[email protected]', # Type in your E-Mail | ||
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 | ||
install_requires=[ | ||
"appdirs~=1.4.4", | ||
"openai==0.28.1", | ||
"numpy~=1.26.1", | ||
"python-dotenv==1.0.0", | ||
"bitarray==2.8.2", | ||
"pydantic==2.4.2", | ||
"requests~=2.31.0" | ||
], | ||
classifiers=[ | ||
'Development Status :: 3 - Alpha', | ||
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Intended Audience :: Developers', # Define that your audience are developers | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', # Again, pick a license | ||
'Programming Language :: Python :: 3', # Specify which python versions that you want to support | ||
], | ||
) |