Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Commit

Permalink
Release version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
janpawellek committed Jun 21, 2023
1 parent d97cb31 commit bf24cda
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ownai",
"version": "0.0.0",
"version": "0.1.0",
"description": "Run your own AI",
"type": "module",
"scripts": {
Expand Down
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ pylint
pytest
coverage
black
build
twine

# Optional dependencies to run as a production server
gunicorn
Expand Down
17 changes: 17 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ banana-dev==4.0.2
beam-sdk==0.13.0
bidict==0.22.1
black==23.3.0
bleach==6.0.0
blinker==1.6.2
boto3==1.26.155
botocore==1.29.155
build==0.10.0
cachetools==5.3.1
certifi==2023.5.7
cffi==1.15.1
Expand All @@ -31,6 +33,7 @@ dataclasses-json==0.5.8
decorator==5.1.1
dill==0.3.6
diskcache==5.6.1
docutils==0.20.1
docx2txt==0.8
duckdb==0.8.1
fastapi==0.97.0
Expand Down Expand Up @@ -70,20 +73,25 @@ importlib-metadata==6.6.0
iniconfig==2.0.0
isort==5.12.0
itsdangerous==2.1.2
jaraco.classes==3.2.3
Jinja2==3.1.2
jmespath==1.0.1
joblib==1.2.0
keyring==24.0.0
langchain==0.0.202
langchainplus-sdk==0.0.10
lazy-object-proxy==1.9.0
llama-cpp-python==0.1.63
lz4==4.3.2
markdown-it-py==3.0.0
MarkupSafe==2.1.3
marshmallow==3.18.0
marshmallow-dataclass==8.5.14
marshmallow-enum==1.5.1
mccabe==0.7.0
mdurl==0.1.2
monotonic==1.6
more-itertools==9.1.0
mpmath==1.3.0
multidict==6.0.4
mypy==0.981
Expand All @@ -102,6 +110,7 @@ packaging==23.1
pandas==2.0.2
pathspec==0.11.1
Pillow==9.5.0
pkginfo==1.9.6
platformdirs==3.5.3
pluggy==1.0.0
posthog==3.0.1
Expand All @@ -113,18 +122,24 @@ pyasn1-modules==0.3.0
pycares==4.3.0
pycparser==2.21
pydantic==1.10.9
Pygments==2.15.1
pylint==2.17.4
pypdf==3.9.1
pyproject_hooks==1.0.0
pytest==7.3.2
python-dateutil==2.8.2
python-dotenv==1.0.0
python-engineio==4.4.1
python-socketio==5.8.0
pytz==2023.3
PyYAML==6.0
readme-renderer==40.0
regex==2023.6.3
replicate==0.8.3
requests==2.31.0
requests-toolbelt==1.0.0
rfc3986==2.0.0
rich==13.4.2
rsa==4.9
rwkv==0.7.5
s3transfer==0.6.1
Expand All @@ -148,6 +163,7 @@ torch==2.0.1
torchvision==0.15.2
tqdm==4.65.0
transformers==4.30.2
twine==4.0.2
typeguard==2.13.3
typing-inspect==0.9.0
typing_extensions==4.6.3
Expand All @@ -157,6 +173,7 @@ uvicorn==0.22.0
uvloop==0.17.0
validators==0.20.0
watchfiles==0.19.0
webencodings==0.5.1
websockets==11.0.3
Werkzeug==2.3.6
wrapt==1.15.0
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
"""ownAI is an open source platform to run your own AI applications."""
from pathlib import Path
from setuptools import find_packages, setup
from setuptools import find_namespace_packages, setup

setup(
name="ownAI",
version="0.0.0",
version="0.1.0",
description="Run your own AI",
url="https://ownai.org",
license="MIT",
packages=find_packages(),
packages=find_namespace_packages(exclude=["tests", "tests.*", "venv", "venv.*"]),
include_package_data=True,
install_requires=[
"flask",
Expand Down

0 comments on commit bf24cda

Please sign in to comment.