You've already forked Curso-lenguaje-python
Update Python Ofensivo
This commit is contained in:
16
python-ofensivo/00_ejercicios/07_modulos02/setup.py
Normal file
16
python-ofensivo/00_ejercicios/07_modulos02/setup.py
Normal file
@@ -0,0 +1,16 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
with open("README.md", "r", encoding="utf-8") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(
|
||||
name='paquete_ejemplo',
|
||||
version='0.1.0',
|
||||
packages=find_packages(),
|
||||
install_requires=[],
|
||||
author='Manuel Vergara',
|
||||
description='Paquete de ejemplo',
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
url="https://vergaracarmona.es",
|
||||
)
|
||||
Reference in New Issue
Block a user