Skip to content

Instantly share code, notes, and snippets.

@srishanbhattarai
Last active August 14, 2017 17:34
Show Gist options
  • Save srishanbhattarai/5046c8da7154063db7c4cf2b36778697 to your computer and use it in GitHub Desktop.
Save srishanbhattarai/5046c8da7154063db7c4cf2b36778697 to your computer and use it in GitHub Desktop.
A setup.py sample for Python projects
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='package name',
version='0.0',
license='MIT',
description='Short description',
long_description=long_description,
author='Srishan Bhattarai',
author_email='srishanbhattarai@gmail.com',
url='',
packages=['package name'],
install_requires=[
],
include_package_data=True,
classifiers=[
'Operating System :: MacOS :: MacOS X',
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment