From e0992a9de899ff24697e048ce5fdef5460fc9a2e Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Tue, 23 Jul 2013 10:15:38 -0400 Subject: [PATCH] no more setup.py. Fixes #112 --- setup.py | 60 -------------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100755 setup.py diff --git a/setup.py b/setup.py deleted file mode 100755 index 7525bbf..0000000 --- a/setup.py +++ /dev/null @@ -1,60 +0,0 @@ -#!/usr/bin/env python -# -*- coding: utf-8 -*- - -import os -import sys - -try: - from setuptools import setup -except ImportError: - from distutils.core import setup - - -if sys.argv[-1] == 'publish': - os.system("python setup.py sdist upload") - sys.exit() - - -deps = [ - 'Flask==0.8', - 'Flask-Script==0.3.1', - 'Jinja2==2.5.5', - 'Werkzeug==0.8.1', - 'argparse==1.2.1', - 'distribute==0.6.15', - 'wsgiref==0.1.2', - 'decorator==3.3.2', - 'omnijson==0.1.2', - 'gevent' -] - -setup( - name='httpbin', - version='0.0.6', - install_requires=deps, - description='HTTP Request and Response Service.', - long_description='httpbin.org', - author='Kenneth Reitz', - author_email='me@kennethreitz.com', - url='https://httpbin.org', - packages=['httpbin'], - 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.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - # 'Programming Language :: Python :: 3.0', - # 'Programming Language :: Python :: 3.1', - # 'Programming Language :: Python :: 3.2', - ), - entry_points={ - 'console_scripts': [ - 'httpbin = httpbin.runner:main', - ], - } -)