mirror of
https://github.com/sprockets/sprockets.logging.git
synced 2024-11-24 19:29:51 +00:00
Merge pull request #9 from sprockets/package-with-packages
Package with packages
This commit is contained in:
commit
f0458ae2ff
3 changed files with 8 additions and 3 deletions
|
@ -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
|
||||
|
|
4
setup.py
4
setup.py
|
@ -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,
|
||||
|
|
|
@ -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
|
Loading…
Reference in a new issue