Merge pull request #9 from sprockets/package-with-packages

Package with packages
This commit is contained in:
amberheilman 2015-10-02 09:03:11 -04:00
commit f0458ae2ff
3 changed files with 8 additions and 3 deletions

View file

@ -1,6 +1,10 @@
Version History
===============
`1.3.2`_ Oct 2, 2015
---------------------
- Switch to packaging as a package instead of a py_module.
`1.3.1`_ Sep 14, 2015
---------------------
- Fix query_arguments handling in Python 3
@ -36,6 +40,7 @@ Version History
---------------------
- Added :class:`sprockets.logging.ContextFilter`
.. _1.3.2: https://github.com/sprockets/sprockets.logging/compare/1.3.1...1.3.2
.. _1.3.1: https://github.com/sprockets/sprockets.logging/compare/1.3.0...1.3.1
.. _1.3.0: https://github.com/sprockets/sprockets.logging/compare/1.2.1...1.3.0
.. _1.2.1: https://github.com/sprockets/sprockets.logging/compare/1.2.0...1.2.1

View file

@ -22,7 +22,7 @@ setuptools.setup(
license='BSD',
extras_require={'tornado': ['tornado>3,<5']},
classifiers=[
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
@ -36,8 +36,8 @@ setuptools.setup(
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=setuptools.find_packages(),
namespace_packages=['sprockets'],
py_modules=['sprockets.logging'],
install_requires=install_requires,
setup_requires=setup_requires,
tests_require=tests_require,

View file

@ -23,7 +23,7 @@ except ImportError: # pragma no cover
escape = None
log = None
version_info = (1, 3, 1)
version_info = (1, 3, 2)
__version__ = '.'.join(str(v) for v in version_info)
# Shortcut methods and constants to avoid needing to import logging directly