nngl 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.
nngl-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nngl
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: La bibliothèque graphique 2D la plus simple pour les humains et les IA
|
|
5
|
+
Author: Nayane (kaki-code2015)
|
|
6
|
+
Author-email: asponeproduction@gmail.com
|
|
7
|
+
License: CC-BY-NC-4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: Freely Distributable
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/plain
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: license
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
NNGL (Nayane's Noob Graphics Library) permet de créer des fenêtres, du texte et des boutons en quelques lignes de code ultra-simples.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: nngl
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: La bibliothèque graphique 2D la plus simple pour les humains et les IA
|
|
5
|
+
Author: Nayane (kaki-code2015)
|
|
6
|
+
Author-email: asponeproduction@gmail.com
|
|
7
|
+
License: CC-BY-NC-4.0
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: Freely Distributable
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/plain
|
|
13
|
+
Dynamic: author
|
|
14
|
+
Dynamic: author-email
|
|
15
|
+
Dynamic: classifier
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: license
|
|
19
|
+
Dynamic: requires-python
|
|
20
|
+
Dynamic: summary
|
|
21
|
+
|
|
22
|
+
NNGL (Nayane's Noob Graphics Library) permet de créer des fenêtres, du texte et des boutons en quelques lignes de code ultra-simples.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
nngl-0.1.0/setup.cfg
ADDED
nngl-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="nngl",
|
|
5
|
+
version="0.1.0",
|
|
6
|
+
author="Nayane (kaki-code2015)",
|
|
7
|
+
author_email="asponeproduction@gmail.com",
|
|
8
|
+
description="La bibliothèque graphique 2D la plus simple pour les humains et les IA",
|
|
9
|
+
long_description="NNGL (Nayane's Noob Graphics Library) permet de créer des fenêtres, du texte et des boutons en quelques lignes de code ultra-simples.",
|
|
10
|
+
long_description_content_type="text/plain",
|
|
11
|
+
license="CC-BY-NC-4.0",
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: Freely Distributable",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
],
|
|
18
|
+
python_requires='>=3.6',
|
|
19
|
+
)
|