mirror of
https://github.com/kennethreitz/httpbin.git
synced 2026-06-05 23:00:18 +00:00
Add a setup.py
This allows tox to run, and allows me to install httpbin as a depenency (see #136)
This commit is contained in:
@@ -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'],
|
||||
)
|
||||
Reference in New Issue
Block a user