Skip to content

Commit

Permalink
Entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Oct 15, 2011
1 parent f8eb92f commit 8e23434
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

setup(
name='httpbin',
version='111015',
version='0.0.1',
install_requires=open('requirements.txt').readlines(),
description='HTTP Request and Response Service.',
long_description=open('README.md').read(),
Expand All @@ -39,4 +39,9 @@
# 'Programming Language :: Python :: 3.1',
# 'Programming Language :: Python :: 3.2',
),
entry_points={
'console_scripts': [
'httpbin = httpbin.runner:main',
],
}
)

0 comments on commit 8e23434

Please sign in to comment.