Skip to content

Instantly share code, notes, and snippets.

@mrrizal
Created January 9, 2021 09:14
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 mrrizal/f9304aa08f35de6415e954adf1afb3b3 to your computer and use it in GitHub Desktop.
Save mrrizal/f9304aa08f35de6415e954adf1afb3b3 to your computer and use it in GitHub Desktop.
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="hello-package",
version="0.0.2",
author="Rizal",
author_email="rizalubuntuuser@gmail.com",
description="A small example package",
url="https://gitlab.com/JangIjal/hello",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: Unlicensed",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=["pytest", "requests"],
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment