Skip to content

Instantly share code, notes, and snippets.

@cr0wg4n
Last active July 21, 2021 01:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cr0wg4n/35a5002e4176ed6e76063b8a02a6a8fc to your computer and use it in GitHub Desktop.
Save cr0wg4n/35a5002e4176ed6e76063b8a02a6a8fc to your computer and use it in GitHub Desktop.
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