Skip to content

Instantly share code, notes, and snippets.

@myusuf3
Created February 11, 2012 19:36
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 myusuf3/1803760 to your computer and use it in GitHub Desktop.
Save myusuf3/1803760 to your computer and use it in GitHub Desktop.
hello
from distutils.core import setup
setup(
name='hello',
version='0.1dev',
description='hhi',
url='https://github.com/myusuf3/hello',
author='Mahdi Yusuf',
author_email='yusuf.mahdi@gmail.com',
packages=['hello',],
license='MIT License',
long_description=open('README.rst').read(),
entry_points = dict(console_scripts=['hello=hello.core:foo',])
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment