2014-08-19 16:58:29 +00:00
|
|
|
from setuptools import setup
|
|
|
|
import os
|
2014-08-19 20:52:51 +00:00
|
|
|
import sys
|
2014-08-19 16:58:29 +00:00
|
|
|
|
|
|
|
requirements = ['sprockets']
|
|
|
|
tests_require = ['coverage', 'coveralls', 'mock', 'nose']
|
|
|
|
|
|
|
|
# Requirements for Python 2.6
|
2014-08-19 20:52:51 +00:00
|
|
|
version = sys.version_info
|
|
|
|
if (version.major, version.minor) < (2, 7):
|
2014-08-19 16:58:29 +00:00
|
|
|
tests_require.append('unittest2')
|
|
|
|
|
|
|
|
|
|
|
|
setup(name='sprockets.http',
|
|
|
|
version='0.1.0',
|
|
|
|
description=('HTTP Server / Web application controller'),
|
|
|
|
author='AWeber Communications',
|
|
|
|
url='https://github.com/sprockets/sprockets.http',
|
2014-08-19 20:52:51 +00:00
|
|
|
entry_points={'sprockets.controller': ['http=sprockets.http']},
|
2014-08-19 16:58:29 +00:00
|
|
|
install_requires=requirements,
|
|
|
|
license=open('LICENSE').read(),
|
|
|
|
namespace_packages=['sprockets'],
|
|
|
|
package_data={'': ['LICENSE', 'README.md']},
|
|
|
|
packages=['sprockets.http'],
|
|
|
|
classifiers=['Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: No Input/Output (Daemon)',
|
|
|
|
'Framework :: Tornado',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Software Development :: Libraries :: Python Modules'],
|
|
|
|
test_suite='nose.collector',
|
|
|
|
tests_require=tests_require,
|
|
|
|
zip_safe=True)
|