MaTLM 1.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.
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: MaTLM
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Uma biblioteca de cálculo com gerenciamento de histórico automático e otimizada para fluxos pesados.
|
|
5
|
+
Author: Seu Nome
|
|
6
|
+
Author-email: seu_email@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
Biblioteca leve e independente criada para simplificar a criação de interfaces de calculadora, cuidando de logs, tratamento de erros, criptografia e otimização de RAM.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
matlm-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: MaTLM
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Uma biblioteca de cálculo com gerenciamento de histórico automático e otimizada para fluxos pesados.
|
|
5
|
+
Author: Seu Nome
|
|
6
|
+
Author-email: seu_email@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: classifier
|
|
14
|
+
Dynamic: description
|
|
15
|
+
Dynamic: requires-python
|
|
16
|
+
Dynamic: summary
|
|
17
|
+
|
|
18
|
+
Biblioteca leve e independente criada para simplificar a criação de interfaces de calculadora, cuidando de logs, tratamento de erros, criptografia e otimização de RAM.
|
matlm-1.0.0/setup.cfg
ADDED
matlm-1.0.0/setup.py
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="MaTLM",
|
|
5
|
+
version="1.0.0",
|
|
6
|
+
author="Seu Nome",
|
|
7
|
+
author_email="seu_email@example.com",
|
|
8
|
+
description="Uma biblioteca de cálculo com gerenciamento de histórico automático e otimizada para fluxos pesados.",
|
|
9
|
+
long_description="Biblioteca leve e independente criada para simplificar a criação de interfaces de calculadora, cuidando de logs, tratamento de erros, criptografia e otimização de RAM.",
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
classifiers=[
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
"License :: OSI Approved :: MIT License",
|
|
14
|
+
"Operating System :: OS Independent",
|
|
15
|
+
],
|
|
16
|
+
python_requires='>=3.6',
|
|
17
|
+
)
|