Created
February 11, 2012 19:36
-
-
Save myusuf3/1803760 to your computer and use it in GitHub Desktop.
hello
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from distutils.core import setup | |
setup( | |
name='hello', | |
version='0.1dev', | |
description='hhi', | |
url='https://github.com/myusuf3/hello', | |
author='Mahdi Yusuf', | |
author_email='[email protected]', | |
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