sprockets.logging/setup.py
Dave Shawley 50f5baa466 Switch from py_module to sub-package.
Distributing py_modules inside of a namespace package seems to violate
a namespace packaging requirement.  Back to distributing as a package of
one file instead :/
2015-10-02 07:27:13 -04:00

45 lines
1.5 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']
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 :: 5 - Production/Stable',
'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'
],
packages=setuptools.find_packages(),
namespace_packages=['sprockets'],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,
test_suite='nose.collector',
zip_safe=True)