Skip to content

Instantly share code, notes, and snippets.

@mancap314
Last active January 14, 2021 04:26
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 mancap314/ba11687408deb509a45eabaae59be526 to your computer and use it in GitHub Desktop.
Save mancap314/ba11687408deb509a45eabaae59be526 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='mypackage',
version='0.0.1',
author='My Name',
author_email='my.name@somemail.xyz',
description='My super duper Python package',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/myusername/mypackage',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
install_requires=[
'somepackage>=1.1.0',
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment