Skip to content

Instantly share code, notes, and snippets.

@ibrahim12
Created March 17, 2015 22:10
Show Gist options
  • Save ibrahim12/90dba1f781c893dcf2cb to your computer and use it in GitHub Desktop.
Save ibrahim12/90dba1f781c893dcf2cb to your computer and use it in GitHub Desktop.
Python Package Sample Setup File
"""
Pacakge Name
-------------
Pacakge Description .
"""
from setuptools import setup
setup(
name='PACKAGE_NAME',
version='0.1',
url='https://github.com/username/repo_name',
license='GNU',
author='Your Name',
author_email='your_email',
description='Pacakge Description',
long_description=__doc__,
packages=['package_folder_name',],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'Flask',
'Boto>=2.5.2'
],
download_url = 'https://github.com/username/repo_name/tarball/0.1',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: Other/Proprietary License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment