Skip to content

Commit

Permalink
Fix/versions (#103)
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:

---------

Co-authored-by: Jack Hopkins <[email protected]>
  • Loading branch information
JackHopkins and Jack Hopkins authored Nov 28, 2023
1 parent 94d3625 commit 5327a66
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
12 changes: 12 additions & 0 deletions MANIFEST
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
2 changes: 1 addition & 1 deletion setup.cfg
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.
Expand Down
32 changes: 32 additions & 0 deletions setup.py
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
],
)

0 comments on commit 5327a66

Please sign in to comment.