slothquery 1.0.1__tar.gz → 1.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {slothquery-1.0.1/backend/slothquery.egg-info → slothquery-1.0.2}/PKG-INFO +1 -1
  2. {slothquery-1.0.1 → slothquery-1.0.2/backend/slothquery.egg-info}/PKG-INFO +1 -1
  3. {slothquery-1.0.1 → slothquery-1.0.2}/setup.py +13 -9
  4. {slothquery-1.0.1 → slothquery-1.0.2}/MANIFEST.in +0 -0
  5. {slothquery-1.0.1 → slothquery-1.0.2}/README.md +0 -0
  6. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/__init__.py +0 -0
  7. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/cli.py +0 -0
  8. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/database.py +0 -0
  9. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/dist/assets/index-BDTPNUTQ.css +0 -0
  10. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/dist/assets/index-DKvMVJoY.js +0 -0
  11. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/dist/assets/logo-RBZv3XvP.png +0 -0
  12. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/dist/index.html +0 -0
  13. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/main.py +0 -0
  14. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/models.py +0 -0
  15. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/routers/__init__.py +0 -0
  16. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/routers/core.py +0 -0
  17. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/schemas.py +0 -0
  18. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/__init__.py +0 -0
  19. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/chat.py +0 -0
  20. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/encryption.py +0 -0
  21. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/export_import.py +0 -0
  22. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/extraction.py +0 -0
  23. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/provider.py +0 -0
  24. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/retrieval.py +0 -0
  25. {slothquery-1.0.1 → slothquery-1.0.2}/backend/app/services/vector_store.py +0 -0
  26. {slothquery-1.0.1 → slothquery-1.0.2}/backend/slothquery.egg-info/SOURCES.txt +0 -0
  27. {slothquery-1.0.1 → slothquery-1.0.2}/backend/slothquery.egg-info/dependency_links.txt +0 -0
  28. {slothquery-1.0.1 → slothquery-1.0.2}/backend/slothquery.egg-info/entry_points.txt +0 -0
  29. {slothquery-1.0.1 → slothquery-1.0.2}/backend/slothquery.egg-info/requires.txt +0 -0
  30. {slothquery-1.0.1 → slothquery-1.0.2}/backend/slothquery.egg-info/top_level.txt +0 -0
  31. {slothquery-1.0.1 → slothquery-1.0.2}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: slothquery
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Local-first organizational intelligence platform
5
5
  Author: Ayush Thakur
6
6
  Author-email: ayush01thakur@gmail.com
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: slothquery
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: Local-first organizational intelligence platform
5
5
  Author: Ayush Thakur
6
6
  Author-email: ayush01thakur@gmail.com
@@ -1,16 +1,9 @@
1
1
  from setuptools import setup, find_packages
2
2
  import os
3
3
 
4
- # Read requirements from backend/requirements.txt
5
- requirements_path = os.path.join("backend", "requirements.txt")
6
- requirements = []
7
- if os.path.exists(requirements_path):
8
- with open(requirements_path, "r") as f:
9
- requirements = [line.strip() for line in f if line.strip() and not line.startswith("#")]
10
-
11
4
  setup(
12
5
  name="slothquery",
13
- version="1.0.1",
6
+ version="1.0.2",
14
7
  description="Local-first organizational intelligence platform",
15
8
  author="Ayush Thakur",
16
9
  author_email="ayush01thakur@gmail.com",
@@ -21,7 +14,18 @@ setup(
21
14
  # Bundle all compiled React frontend files in the python package
22
15
  "app": ["dist/**/*", "dist/*", "dist/assets/*"],
23
16
  },
24
- install_requires=requirements,
17
+ install_requires=[
18
+ "fastapi",
19
+ "uvicorn",
20
+ "pydantic",
21
+ "sqlalchemy",
22
+ "cryptography",
23
+ "chromadb",
24
+ "litellm",
25
+ "sentence-transformers",
26
+ "sqlglot",
27
+ "python-multipart",
28
+ ],
25
29
  entry_points={
26
30
  "console_scripts": [
27
31
  "slothquery=app.cli:main",
File without changes
File without changes
File without changes