Skip to content

Instantly share code, notes, and snippets.

@pawelrubin
Created December 9, 2020 14:31
Show Gist options
  • Save pawelrubin/563bba1d591959c674c8aca81d3918ad to your computer and use it in GitHub Desktop.
Save pawelrubin/563bba1d591959c674c8aca81d3918ad to your computer and use it in GitHub Desktop.
import setuptools
setuptools.setup(
name="example-pkg",
version="0.0.1",
author="Example Author",
author_email="author@example.com",
description="A small example package",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
extras_require={
"foo": ["requests~=2.25"]
},
python_requires='>=3.9',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment