panzer 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.
- panzer-0.1.0/LICENSE +21 -0
- panzer-0.1.0/PKG-INFO +21 -0
- panzer-0.1.0/README.md +3 -0
- panzer-0.1.0/panzer/__init__.py +0 -0
- panzer-0.1.0/panzer.egg-info/PKG-INFO +21 -0
- panzer-0.1.0/panzer.egg-info/SOURCES.txt +9 -0
- panzer-0.1.0/panzer.egg-info/dependency_links.txt +1 -0
- panzer-0.1.0/panzer.egg-info/top_level.txt +2 -0
- panzer-0.1.0/setup.cfg +4 -0
- panzer-0.1.0/setup.py +40 -0
- panzer-0.1.0/tests/__init__.py +0 -0
panzer-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 nand0san
|
|
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.
|
panzer-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: panzer
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: REST API manager under development.
|
|
5
|
+
Home-page: https://github.com/nand0san/panzer
|
|
6
|
+
Author: nand0san
|
|
7
|
+
Author-email:
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Natural Language :: English
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
|
|
19
|
+
# Panzer
|
|
20
|
+
|
|
21
|
+
Rest API manager under development.
|
panzer-0.1.0/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: panzer
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: REST API manager under development.
|
|
5
|
+
Home-page: https://github.com/nand0san/panzer
|
|
6
|
+
Author: nand0san
|
|
7
|
+
Author-email:
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
9
|
+
Classifier: Intended Audience :: Developers
|
|
10
|
+
Classifier: Natural Language :: English
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Operating System :: OS Independent
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
|
|
19
|
+
# Panzer
|
|
20
|
+
|
|
21
|
+
Rest API manager under development.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
panzer-0.1.0/setup.cfg
ADDED
panzer-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='panzer',
|
|
5
|
+
version='0.1.0',
|
|
6
|
+
author='nand0san',
|
|
7
|
+
author_email='',
|
|
8
|
+
description='REST API manager under development.',
|
|
9
|
+
long_description=open('README.md').read(),
|
|
10
|
+
long_description_content_type='text/markdown',
|
|
11
|
+
url='https://github.com/nand0san/panzer', # Asegúrate de poner la URL correcta
|
|
12
|
+
packages=find_packages(),
|
|
13
|
+
install_requires=[
|
|
14
|
+
# Aquí puedes poner una lista de dependencias necesarias, por ejemplo:
|
|
15
|
+
# 'requests',
|
|
16
|
+
# 'urllib3',
|
|
17
|
+
],
|
|
18
|
+
classifiers=[
|
|
19
|
+
'Development Status :: 3 - Alpha', # 3 - Alpha/4 - Beta/5 - Production/Stable
|
|
20
|
+
'Intended Audience :: Developers',
|
|
21
|
+
'Natural Language :: English',
|
|
22
|
+
'Programming Language :: Python :: 3',
|
|
23
|
+
'Programming Language :: Python :: 3.11', # Asegúrate de especificar las versiones que soporta
|
|
24
|
+
# 'Programming Language :: Python :: 3.9',
|
|
25
|
+
'License :: OSI Approved :: MIT License',
|
|
26
|
+
'Operating System :: OS Independent',
|
|
27
|
+
],
|
|
28
|
+
python_requires='>=3.11', # Asegúrate de especificar la versión de Python necesaria
|
|
29
|
+
# Incluye archivos no Python si es necesario
|
|
30
|
+
include_package_data=False,
|
|
31
|
+
package_data={
|
|
32
|
+
# Si hay datos como .json o .txt que necesitas incluir, especifica aquí
|
|
33
|
+
},
|
|
34
|
+
# Opcionalmente, si tu paquete es una herramienta de línea de comandos
|
|
35
|
+
# entry_points={
|
|
36
|
+
# 'console_scripts': [
|
|
37
|
+
# # 'nombre-del-comando = modulo.paquete:funcion'
|
|
38
|
+
# ],
|
|
39
|
+
# },
|
|
40
|
+
)
|
|
File without changes
|