From 431acaabf7a3e77b416a57998bfadcb2d3864555 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Sun, 25 May 2014 19:39:00 -1000 Subject: [PATCH] Add a setup.py This allows tox to run, and allows me to install httpbin as a depenency (see #136) --- setup.py | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..9044a05 --- /dev/null +++ b/setup.py @@ -0,0 +1,32 @@ +from setuptools import setup, find_packages +import codecs +import os +import re + +setup( + name="httpbin", + version="0.1.0", + description="HTTP Request and Response Service", + + # The project URL. + url='https://github.com/kennethreitz/httpbin', + + # Author details + author='Kenneth Reitz', + author_email='me@kennethreitz.com', + + # Choose your license + license='MIT', + + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Natural Language :: English', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + ], + packages=find_packages(), + install_requires=['Flask','MarkupSafe','decorator','itsdangerous','six'], +)