moyter 0.0.1__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.
- moyter-0.0.1/PKG-INFO +15 -0
- moyter-0.0.1/README.md +5 -0
- moyter-0.0.1/pyproject.toml +17 -0
- moyter-0.0.1/src/moyter/__init__.py +0 -0
moyter-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: moyter
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Paquete reservado.
|
|
5
|
+
Author-email: Rubén Moya Morata <tu-email-real@ejemplo.com>
|
|
6
|
+
Classifier: Development Status :: 1 - Planning
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# Moyter
|
|
12
|
+
|
|
13
|
+
Este paquete actualmente es un marcador de posición (placeholder) en fase de planificación y desarrollo activo.
|
|
14
|
+
|
|
15
|
+
Próximamente se publicará el código fuente.
|
moyter-0.0.1/README.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "moyter"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Paquete reservado."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
requires-python = ">=3.10"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "Rubén Moya Morata", email = "tu-email-real@ejemplo.com" }
|
|
9
|
+
]
|
|
10
|
+
classifiers = [
|
|
11
|
+
"Development Status :: 1 - Planning",
|
|
12
|
+
"Programming Language :: Python :: 3",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[build-system]
|
|
16
|
+
requires = ["hatchling"]
|
|
17
|
+
build-backend = "hatchling.build"
|
|
File without changes
|