mini-imggen-numpy-lib 0.1.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.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: mini_imggen_numpy_lib
3
+ Version: 0.1.0
4
+ Summary: A lightweight educational Python library for toy image & text generation using NumPy only.
5
+ Home-page: https://github.com/Leo62-glitch/mini_imggen_numpy_lib
6
+ Author: Léo
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Requires-Dist: numpy
12
+ Requires-Dist: pillow
13
+ Dynamic: author
14
+ Dynamic: classifier
15
+ Dynamic: home-page
16
+ Dynamic: requires-dist
17
+ Dynamic: requires-python
18
+ Dynamic: summary
@@ -0,0 +1 @@
1
+ # mini_imggen_numpy_lib
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: mini_imggen_numpy_lib
3
+ Version: 0.1.0
4
+ Summary: A lightweight educational Python library for toy image & text generation using NumPy only.
5
+ Home-page: https://github.com/Leo62-glitch/mini_imggen_numpy_lib
6
+ Author: Léo
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.8
11
+ Requires-Dist: numpy
12
+ Requires-Dist: pillow
13
+ Dynamic: author
14
+ Dynamic: classifier
15
+ Dynamic: home-page
16
+ Dynamic: requires-dist
17
+ Dynamic: requires-python
18
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ mini_imggen_numpy_lib.egg-info/PKG-INFO
5
+ mini_imggen_numpy_lib.egg-info/SOURCES.txt
6
+ mini_imggen_numpy_lib.egg-info/dependency_links.txt
7
+ mini_imggen_numpy_lib.egg-info/requires.txt
8
+ mini_imggen_numpy_lib.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ mini_imggen_numpy_lib
@@ -0,0 +1,3 @@
1
+ [build-system]
2
+ requires = ["setuptools", "wheel"]
3
+ build-backend = "setuptools.build_meta"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,21 @@
1
+ from setuptools import setup, find_packages
2
+
3
+
4
+ setup(
5
+ name="mini_imggen_numpy_lib",
6
+ version="0.1.0",
7
+ description="A lightweight educational Python library for toy image & text generation using NumPy only.",
8
+ author="Léo",
9
+ url="https://github.com/Leo62-glitch/mini_imggen_numpy_lib",
10
+ py_modules=["mini_imggen_numpy_lib"],
11
+ install_requires=[
12
+ "numpy",
13
+ "pillow"
14
+ ],
15
+ python_requires=">=3.8",
16
+ classifiers=[
17
+ "Programming Language :: Python :: 3",
18
+ "License :: OSI Approved :: MIT License",
19
+ "Operating System :: OS Independent",
20
+ ],
21
+ )