mlfz 0.0.0__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.
mlfz-0.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Tivadar Danka
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.
mlfz-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.1
2
+ Name: mlfz
3
+ Version: 0.0.0
4
+ Summary: An educational machine learning library.
5
+ Home-page: https://github.com/yourusername/my_pypi_package
6
+ Author: Tivadar Danka
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+
14
+ # mlfz
15
+ An educational machine learning library.
16
+
17
+ ## Installation
18
+
19
+ You can install the package with
20
+
21
+ ```
22
+ pip install mlfz
23
+ ```
24
+
25
+ To play around with the code, you can clone the repository and install locally via
26
+ ```
27
+ pip install -e .
28
+ ```
mlfz-0.0.0/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # mlfz
2
+ An educational machine learning library.
3
+
4
+ ## Installation
5
+
6
+ You can install the package with
7
+
8
+ ```
9
+ pip install mlfz
10
+ ```
11
+
12
+ To play around with the code, you can clone the repository and install locally via
13
+ ```
14
+ pip install -e .
15
+ ```
@@ -0,0 +1,28 @@
1
+ Metadata-Version: 2.1
2
+ Name: mlfz
3
+ Version: 0.0.0
4
+ Summary: An educational machine learning library.
5
+ Home-page: https://github.com/yourusername/my_pypi_package
6
+ Author: Tivadar Danka
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+
14
+ # mlfz
15
+ An educational machine learning library.
16
+
17
+ ## Installation
18
+
19
+ You can install the package with
20
+
21
+ ```
22
+ pip install mlfz
23
+ ```
24
+
25
+ To play around with the code, you can clone the repository and install locally via
26
+ ```
27
+ pip install -e .
28
+ ```
@@ -0,0 +1,7 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ mlfz.egg-info/PKG-INFO
5
+ mlfz.egg-info/SOURCES.txt
6
+ mlfz.egg-info/dependency_links.txt
7
+ mlfz.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+
mlfz-0.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
mlfz-0.0.0/setup.py ADDED
@@ -0,0 +1,19 @@
1
+ from setuptools import setup, find_packages
2
+
3
+
4
+ setup(
5
+ name="mlfz",
6
+ version="0.0.0",
7
+ author="Tivadar Danka",
8
+ description="An educational machine learning library.",
9
+ long_description=open("README.md").read(),
10
+ long_description_content_type="text/markdown",
11
+ url="https://github.com/yourusername/my_pypi_package",
12
+ packages=find_packages(),
13
+ classifiers=[
14
+ "Programming Language :: Python :: 3",
15
+ "License :: OSI Approved :: MIT License",
16
+ "Operating System :: OS Independent",
17
+ ],
18
+ python_requires=">=3.10",
19
+ )