QuerySUTRA 0.4.1__tar.gz → 0.4.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 (41) hide show
  1. {querysutra-0.4.1 → querysutra-0.4.2}/PKG-INFO +2 -2
  2. {querysutra-0.4.1 → querysutra-0.4.2}/QuerySUTRA.egg-info/PKG-INFO +2 -2
  3. querysutra-0.4.2/pyproject.toml +19 -0
  4. querysutra-0.4.2/setup.py +17 -0
  5. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/__init__.py +2 -2
  6. querysutra-0.4.1/pyproject.toml +0 -29
  7. querysutra-0.4.1/setup.py +0 -31
  8. {querysutra-0.4.1 → querysutra-0.4.2}/LICENSE +0 -0
  9. {querysutra-0.4.1 → querysutra-0.4.2}/MANIFEST.in +0 -0
  10. {querysutra-0.4.1 → querysutra-0.4.2}/QuerySUTRA.egg-info/SOURCES.txt +0 -0
  11. {querysutra-0.4.1 → querysutra-0.4.2}/QuerySUTRA.egg-info/dependency_links.txt +0 -0
  12. {querysutra-0.4.1 → querysutra-0.4.2}/QuerySUTRA.egg-info/requires.txt +0 -0
  13. {querysutra-0.4.1 → querysutra-0.4.2}/QuerySUTRA.egg-info/top_level.txt +0 -0
  14. {querysutra-0.4.1 → querysutra-0.4.2}/README.md +0 -0
  15. {querysutra-0.4.1 → querysutra-0.4.2}/examples/quickstart.py +0 -0
  16. {querysutra-0.4.1 → querysutra-0.4.2}/examples/sutra_usage_guide.ipynb +0 -0
  17. {querysutra-0.4.1 → querysutra-0.4.2}/examples/usage_guide.ipynb +0 -0
  18. {querysutra-0.4.1 → querysutra-0.4.2}/requirements.txt +0 -0
  19. {querysutra-0.4.1 → querysutra-0.4.2}/setup.cfg +0 -0
  20. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/cache_manager.py +0 -0
  21. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/clear_cache.py +0 -0
  22. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/core.py +0 -0
  23. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/data_loader.py +0 -0
  24. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/database_manager.py +0 -0
  25. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/direct_query.py +0 -0
  26. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/feedback.py +0 -0
  27. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/feedback_matcher.py +0 -0
  28. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/nlp_processor.py +0 -0
  29. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/schema_embeddings.py +0 -0
  30. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/schema_generator.py +0 -0
  31. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/sutra.py +0 -0
  32. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/sutra_client.py +0 -0
  33. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/sutra_core.py +0 -0
  34. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/sutra_simple.py +0 -0
  35. {querysutra-0.4.1 → querysutra-0.4.2}/sutra/visualizer.py +0 -0
  36. {querysutra-0.4.1 → querysutra-0.4.2}/tests/__init__.py +0 -0
  37. {querysutra-0.4.1 → querysutra-0.4.2}/tests/test_modules.py +0 -0
  38. {querysutra-0.4.1 → querysutra-0.4.2}/tests/test_sutra.py +0 -0
  39. {querysutra-0.4.1 → querysutra-0.4.2}/utils/__init__.py +0 -0
  40. {querysutra-0.4.1 → querysutra-0.4.2}/utils/file_utils.py +0 -0
  41. {querysutra-0.4.1 → querysutra-0.4.2}/utils/text_utils.py +0 -0
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QuerySUTRA
3
- Version: 0.4.1
4
- Summary: SUTRA: AI-powered data analysis with automatic MySQL export
3
+ Version: 0.4.2
4
+ Summary: SUTRA: AI-powered data analysis
5
5
  Author: Aditya Batta
6
6
  License: MIT
7
7
  Requires-Python: >=3.8
@@ -1,7 +1,7 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QuerySUTRA
3
- Version: 0.4.1
4
- Summary: SUTRA: AI-powered data analysis with automatic MySQL export
3
+ Version: 0.4.2
4
+ Summary: SUTRA: AI-powered data analysis
5
5
  Author: Aditya Batta
6
6
  License: MIT
7
7
  Requires-Python: >=3.8
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["setuptools>=45", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "QuerySUTRA"
7
+ version = "0.4.2"
8
+ description = "SUTRA: AI-powered data analysis"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [{name = "Aditya Batta"}]
13
+ dependencies = ["pandas>=1.3.0","numpy>=1.21.0","openai>=1.0.0","plotly>=5.0.0","matplotlib>=3.3.0","PyPDF2>=3.0.0","python-docx>=0.8.11","openpyxl>=3.0.0"]
14
+
15
+ [project.optional-dependencies]
16
+ mysql = ["sqlalchemy>=1.4.0","mysql-connector-python>=8.0.0"]
17
+ postgres = ["sqlalchemy>=1.4.0","psycopg2-binary>=2.9.0"]
18
+ embeddings = ["sentence-transformers>=2.0.0"]
19
+ all = ["sqlalchemy>=1.4.0","mysql-connector-python>=8.0.0","psycopg2-binary>=2.9.0","sentence-transformers>=2.0.0"]
@@ -0,0 +1,17 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="QuerySUTRA",
8
+ version="0.4.2",
9
+ author="Aditya Batta",
10
+ description="SUTRA: AI-powered data analysis",
11
+ long_description=long_description,
12
+ long_description_content_type="text/markdown",
13
+ packages=find_packages(),
14
+ python_requires=">=3.8",
15
+ install_requires=["pandas>=1.3.0","numpy>=1.21.0","openai>=1.0.0","plotly>=5.0.0","matplotlib>=3.3.0","PyPDF2>=3.0.0","python-docx>=0.8.11","openpyxl>=3.0.0"],
16
+ extras_require={"mysql":["sqlalchemy>=1.4.0","mysql-connector-python>=8.0.0"],"postgres":["sqlalchemy>=1.4.0","psycopg2-binary>=2.9.0"],"embeddings":["sentence-transformers>=2.0.0"],"all":["sqlalchemy>=1.4.0","mysql-connector-python>=8.0.0","psycopg2-binary>=2.9.0","sentence-transformers>=2.0.0"]},
17
+ )
@@ -1,8 +1,8 @@
1
1
  """
2
- QuerySUTRA v0.4.1 - Simple & Automatic
2
+ QuerySUTRA v0.4.2
3
3
  """
4
4
 
5
- __version__ = "0.4.1"
5
+ __version__ = "0.4.2"
6
6
 
7
7
  from sutra.sutra import SUTRA, QueryResult, quick_start
8
8
 
@@ -1,29 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=45", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "QuerySUTRA"
7
- version = "0.4.1"
8
- description = "SUTRA: AI-powered data analysis with automatic MySQL export"
9
- readme = "README.md"
10
- requires-python = ">=3.8"
11
- license = {text = "MIT"}
12
- authors = [{name = "Aditya Batta"}]
13
-
14
- dependencies = [
15
- "pandas>=1.3.0",
16
- "numpy>=1.21.0",
17
- "openai>=1.0.0",
18
- "plotly>=5.0.0",
19
- "matplotlib>=3.3.0",
20
- "PyPDF2>=3.0.0",
21
- "python-docx>=0.8.11",
22
- "openpyxl>=3.0.0",
23
- ]
24
-
25
- [project.optional-dependencies]
26
- mysql = ["sqlalchemy>=1.4.0", "mysql-connector-python>=8.0.0"]
27
- postgres = ["sqlalchemy>=1.4.0", "psycopg2-binary>=2.9.0"]
28
- embeddings = ["sentence-transformers>=2.0.0"]
29
- all = ["sqlalchemy>=1.4.0", "mysql-connector-python>=8.0.0", "psycopg2-binary>=2.9.0", "sentence-transformers>=2.0.0"]
querysutra-0.4.1/setup.py DELETED
@@ -1,31 +0,0 @@
1
- from setuptools import setup, find_packages
2
-
3
- with open("README.md", "r", encoding="utf-8") as fh:
4
- long_description = fh.read()
5
-
6
- setup(
7
- name="QuerySUTRA",
8
- version="0.4.1",
9
- author="Aditya Batta",
10
- description="SUTRA: AI-powered data analysis with automatic MySQL export",
11
- long_description=long_description,
12
- long_description_content_type="text/markdown",
13
- packages=find_packages(),
14
- python_requires=">=3.8",
15
- install_requires=[
16
- "pandas>=1.3.0",
17
- "numpy>=1.21.0",
18
- "openai>=1.0.0",
19
- "plotly>=5.0.0",
20
- "matplotlib>=3.3.0",
21
- "PyPDF2>=3.0.0",
22
- "python-docx>=0.8.11",
23
- "openpyxl>=3.0.0",
24
- ],
25
- extras_require={
26
- "mysql": ["sqlalchemy>=1.4.0", "mysql-connector-python>=8.0.0"],
27
- "postgres": ["sqlalchemy>=1.4.0", "psycopg2-binary>=2.9.0"],
28
- "embeddings": ["sentence-transformers>=2.0.0"],
29
- "all": ["sqlalchemy>=1.4.0", "mysql-connector-python>=8.0.0", "psycopg2-binary>=2.9.0", "sentence-transformers>=2.0.0"],
30
- },
31
- )
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes