Skip to content

Instantly share code, notes, and snippets.

@happysundar
Created May 11, 2016 19:40
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 happysundar/fd528da8da25cc002435401b71ccc342 to your computer and use it in GitHub Desktop.
Save happysundar/fd528da8da25cc002435401b71ccc342 to your computer and use it in GitHub Desktop.
Sample setup.py
# $ virtualenv venv
# $ . venv/bin/activate
# $ pip install --editable
from setuptools import setup
setup(
name='repl_domstore',
version='0.1',
py_modules=['repl_domstore'],
install_requires=[
'Click',
],
entry_points='''
[console_scripts]
repl_domstore=repl_domstore:main
''',
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment