QuantumChecker 0.1.0__tar.gz → 0.2.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.
@@ -1,22 +1,27 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QuantumChecker
3
- Version: 0.1.0
3
+ Version: 0.2.2
4
4
  Summary: A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.
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
5
+ Author: Qobiljon
6
+ Author-email: qobiljonkhayrullayev@gmail.com
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: License :: OSI Approved :: MIT License
10
9
  Classifier: Operating System :: OS Independent
11
10
  Requires-Python: >=3.6
12
11
  Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
12
  Requires-Dist: requests>=2.31.0
15
13
  Requires-Dist: tenacity>=8.2.3
16
14
  Requires-Dist: pdf2image>=1.16.3
17
15
  Requires-Dist: python-dotenv>=1.0.0
18
16
  Requires-Dist: Pillow>=10.0.0
19
- Dynamic: license-file
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: requires-dist
23
+ Dynamic: requires-python
24
+ Dynamic: summary
20
25
 
21
26
  # HomeworkEvaluator
22
27
 
@@ -0,0 +1 @@
1
+ from .main import HomeworkEvaluator
@@ -1,22 +1,27 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: QuantumChecker
3
- Version: 0.1.0
3
+ Version: 0.2.2
4
4
  Summary: A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.
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
5
+ Author: Qobiljon
6
+ Author-email: qobiljonkhayrullayev@gmail.com
8
7
  Classifier: Programming Language :: Python :: 3
9
8
  Classifier: License :: OSI Approved :: MIT License
10
9
  Classifier: Operating System :: OS Independent
11
10
  Requires-Python: >=3.6
12
11
  Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
12
  Requires-Dist: requests>=2.31.0
15
13
  Requires-Dist: tenacity>=8.2.3
16
14
  Requires-Dist: pdf2image>=1.16.3
17
15
  Requires-Dist: python-dotenv>=1.0.0
18
16
  Requires-Dist: Pillow>=10.0.0
19
- Dynamic: license-file
17
+ Dynamic: author
18
+ Dynamic: author-email
19
+ Dynamic: classifier
20
+ Dynamic: description
21
+ Dynamic: description-content-type
22
+ Dynamic: requires-dist
23
+ Dynamic: requires-python
24
+ Dynamic: summary
20
25
 
21
26
  # HomeworkEvaluator
22
27
 
@@ -1,6 +1,5 @@
1
- LICENSE
2
1
  README.md
3
- pyproject.toml
2
+ setup.py
4
3
  QuantumCheck/__init__.py
5
4
  QuantumCheck/main.py
6
5
  QuantumCheck/powerbi_evaluator.py
@@ -0,0 +1,27 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="QuantumChecker",
5
+ version="0.2.2",
6
+ author="Qobiljon",
7
+ author_email="qobiljonkhayrullayev@gmail.com",
8
+ description="A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS.",
9
+ long_description=open("README.md", encoding="utf-8").read(),
10
+ long_description_content_type="text/markdown",
11
+ license_files=["LICENSE.txt"],
12
+ python_requires=">=3.6",
13
+ packages=find_packages(),
14
+ install_requires=[
15
+ "requests>=2.31.0",
16
+ "tenacity>=8.2.3",
17
+ "pdf2image>=1.16.3",
18
+ "python-dotenv>=1.0.0",
19
+ "Pillow>=10.0.0",
20
+ ],
21
+ classifiers=[
22
+ "Programming Language :: Python :: 3",
23
+ "License :: OSI Approved :: MIT License",
24
+ "Operating System :: OS Independent",
25
+ ],
26
+ include_package_data=True,
27
+ )
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2025 Qobiljon Xayrullayev
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
File without changes
@@ -1,30 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "QuantumChecker"
7
- version = "0.1.0"
8
- authors = [
9
- { name = "Qobiljon", email = "qobiljonkhayrullayev@gmail.com" },
10
- ]
11
- description = "A package to evaluate homework submissions in Python, SQL, PowerBI, and SSIS."
12
- readme = "README.md"
13
- license = { file = "LICENSE.txt" }
14
- requires-python = ">=3.6"
15
- dependencies = [
16
- "requests>=2.31.0",
17
- "tenacity>=8.2.3",
18
- "pdf2image>=1.16.3",
19
- "python-dotenv>=1.0.0",
20
- "Pillow>=10.0.0",
21
- ]
22
- classifiers = [
23
- "Programming Language :: Python :: 3",
24
- "License :: OSI Approved :: MIT License",
25
- "Operating System :: OS Independent",
26
- ]
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