Skip to content

Instantly share code, notes, and snippets.

@ethanwhite
Created November 19, 2014 22:15
Show Gist options
  • Save ethanwhite/0056904ba5de217f5de2 to your computer and use it in GitHub Desktop.
Save ethanwhite/0056904ba5de217f5de2 to your computer and use it in GitHub Desktop.
Simple example of setup.py
from setuptools import setup
setup(
name="UltimateAnswer",
version="0.1",
entry_points = {'console_scripts': ['ult-ans = ultimate_answer:main']},
py_modules = ['ultimate_answer']
)
def main():
print "The ultimate answer to life the universe and everything is 42"
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment