QuantumChecker 0.1.0__tar.gz → 0.2.1__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.
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/PKG-INFO +1 -3
- quantumchecker-0.2.1/QuantumCheck/__init__.py +1 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumChecker.egg-info/PKG-INFO +1 -3
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/pyproject.toml +1 -4
- quantumchecker-0.1.0/QuantumCheck/__init__.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/LICENSE +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/main.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/powerbi_evaluator.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/prompts.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/python_evaluator.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/sql_evaluator.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumCheck/ssis_evaluator.py +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumChecker.egg-info/SOURCES.txt +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumChecker.egg-info/dependency_links.txt +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumChecker.egg-info/requires.txt +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/QuantumChecker.egg-info/top_level.txt +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/README.md +0 -0
- {quantumchecker-0.1.0 → quantumchecker-0.2.1}/setup.cfg +0 -0
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: QuantumChecker
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.
|
|
5
5
|
Author-email: Qobiljon <qobiljonkhayrullayev@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/yourusername/homework_evaluator
|
|
7
|
-
Project-URL: Repository, https://github.com/yourusername/homework_evaluator
|
|
8
6
|
Classifier: Programming Language :: Python :: 3
|
|
9
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
8
|
Classifier: Operating System :: OS Independent
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import HomeworkEvaluator
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: QuantumChecker
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.
|
|
5
5
|
Author-email: Qobiljon <qobiljonkhayrullayev@gmail.com>
|
|
6
|
-
Project-URL: Homepage, https://github.com/yourusername/homework_evaluator
|
|
7
|
-
Project-URL: Repository, https://github.com/yourusername/homework_evaluator
|
|
8
6
|
Classifier: Programming Language :: Python :: 3
|
|
9
7
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
8
|
Classifier: Operating System :: OS Independent
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "QuantumChecker"
|
|
7
|
-
version = "0.1
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name = "Qobiljon", email = "qobiljonkhayrullayev@gmail.com" },
|
|
10
10
|
]
|
|
@@ -25,6 +25,3 @@ classifiers = [
|
|
|
25
25
|
"Operating System :: OS Independent",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
|
-
[project.urls]
|
|
29
|
-
Homepage = "https://github.com/yourusername/homework_evaluator"
|
|
30
|
-
Repository = "https://github.com/yourusername/homework_evaluator"
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|