sprockets.logging/setup.py
2015-06-17 22:01:18 -04:00

48 lines
1.6 KiB
Python
Executable file

#!/usr/bin/env python
import codecs
import sys
import setuptools
import sprockets.logging
install_requires = []
setup_requires = []
tests_require = ['nose>=1.3,<2', 'tornado>3,<5']
if sys.version_info < (3, 0):
tests_require.append('mock')
setuptools.setup(
name='sprockets.logging',
version=sprockets.logging.__version__,
description='Making logs nicer since 2015!',
long_description=codecs.open('README.rst', encoding='utf-8').read(),
url='https://github.com/sprockets/sprockets.logging.git',
author='Dave Shawley',
author_email='daves@aweber.com',
license='BSD',
extras_require={'tornado': ['tornado>3,<5']},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
namespace_packages=['sprockets'],
py_modules=['sprockets.logging'],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
test_suite='nose.collector',
zip_safe=True)