quicklearnkit 0.0.1__tar.gz → 0.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.
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Masterhazi
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.
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quicklearnkit
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A simplified interface for machine learning algorithms.
5
- Home-page: https://github.com/yourusername/quicklearn
5
+ Home-page: https://github.com/Masterhazi/quicklearnkit
6
6
  Author: hazi
7
7
  Author-email: hajiafribaba@gmail.com
8
8
  Classifier: Programming Language :: Python :: 3
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
+ License-File: LICENSE
13
14
  Requires-Dist: scikit-learn
14
15
  Requires-Dist: pandas
15
16
  Requires-Dist: numpy
@@ -19,8 +20,10 @@ Dynamic: classifier
19
20
  Dynamic: description
20
21
  Dynamic: description-content-type
21
22
  Dynamic: home-page
23
+ Dynamic: license-file
22
24
  Dynamic: requires-dist
23
25
  Dynamic: requires-python
24
26
  Dynamic: summary
25
27
 
26
- This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
28
+ This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
29
+ please refer https://github.com/Masterhazi/quicklearnkit for documentation
@@ -1 +1,2 @@
1
- This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
1
+ This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
2
+ please refer https://github.com/Masterhazi/quicklearnkit for documentation
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: quicklearnkit
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: A simplified interface for machine learning algorithms.
5
- Home-page: https://github.com/yourusername/quicklearn
5
+ Home-page: https://github.com/Masterhazi/quicklearnkit
6
6
  Author: hazi
7
7
  Author-email: hajiafribaba@gmail.com
8
8
  Classifier: Programming Language :: Python :: 3
@@ -10,6 +10,7 @@ Classifier: License :: OSI Approved :: MIT License
10
10
  Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.6
12
12
  Description-Content-Type: text/markdown
13
+ License-File: LICENSE
13
14
  Requires-Dist: scikit-learn
14
15
  Requires-Dist: pandas
15
16
  Requires-Dist: numpy
@@ -19,8 +20,10 @@ Dynamic: classifier
19
20
  Dynamic: description
20
21
  Dynamic: description-content-type
21
22
  Dynamic: home-page
23
+ Dynamic: license-file
22
24
  Dynamic: requires-dist
23
25
  Dynamic: requires-python
24
26
  Dynamic: summary
25
27
 
26
- This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
28
+ This is an upcoming wrapper library for machine learning beginners and all the enthusisasts out there who want to reduce the time taken for projects, this library works on simple principle and it is gonna save lot of time in upcoming future
29
+ please refer https://github.com/Masterhazi/quicklearnkit for documentation
@@ -1,3 +1,4 @@
1
+ LICENSE
1
2
  README.md
2
3
  pyproject.toml
3
4
  setup.py
@@ -2,13 +2,13 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="quicklearnkit", # Package name
5
- version="0.0.1", # Initial version
5
+ version="0.0.2", # Initial version
6
6
  author="hazi", # Your name
7
7
  author_email="hajiafribaba@gmail.com", # Your email
8
8
  description="A simplified interface for machine learning algorithms.", # Short description
9
9
  long_description=open("README.md").read(), # Long description from README
10
10
  long_description_content_type="text/markdown", # Format of the long description
11
- url="https://github.com/yourusername/quicklearn", # Project URL
11
+ url="https://github.com/Masterhazi/quicklearnkit", # Project URL
12
12
  packages=find_packages(), # Automatically find all packages
13
13
  install_requires=[ # List your dependencies here
14
14
  "scikit-learn",
File without changes