Entry point

This commit is contained in:
Kenneth Reitz
2011-10-15 10:34:22 -04:00
parent f8eb92fbaa
commit 8e23434d20
+6 -1
View File
@@ -17,7 +17,7 @@ if sys.argv[-1] == 'publish':
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(),
@@ -39,4 +39,9 @@ setup(
# 'Programming Language :: Python :: 3.1',
# 'Programming Language :: Python :: 3.2',
),
entry_points={
'console_scripts': [
'httpbin = httpbin.runner:main',
],
}
)