Last active
July 21, 2021 01:57
-
-
Save cr0wg4n/35a5002e4176ed6e76063b8a02a6a8fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import setuptools | |
with open("README.md", "r", encoding="utf-8") as description: | |
long_description = description.read() | |
setuptools.setup( | |
name="nombre-de-tu-lib", | |
version="0.0.X", | |
author="TU NOMBRE DE AUTORÍA", | |
author_email="TU CORREO", | |
description="UNA CORTA DESCRIPCIÓN DE LO QUE HACE TU LIB", | |
long_description=long_description, | |
long_description_content_type="text/markdown", | |
license='MIT', | |
url="https://github.com/TU_NOMBRE_DE_USUARIO/NOMBRE_DEL_REPOSITORIO_DE_CODIGO", | |
project_urls={ | |
"Bug Tracker": "https://github.com/TU_NOMBRE_DE_USUARIO/NOMBRE_DEL_REPOSITORIO_DE_CODIGO/issues", | |
}, | |
classifiers=[ | |
"Programming Language :: Python :: 3", | |
"License :: OSI Approved :: MIT License", | |
"Operating System :: OS Independent", | |
'Development Status :: 3 - Alpha', | |
'Intended Audience :: Developers', | |
'Topic :: Software Development :: Build Tools', | |
], | |
keywords=["demo", "hello-world", "development", "practice", "pypi"], | |
packages=["nombre_de_tu_lib"], | |
package_data={ | |
'nombre_de_tu_lib': [ | |
'carpeta_con_datos_extra/*.json', | |
] | |
}, | |
install_requires=[ | |
"requests", | |
"multipledispatch" | |
], | |
python_requires=">=3.6", | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment