Skip to content

Commit

Permalink
Merge pull request #5 from yola/include_contrib_package
Browse files Browse the repository at this point in the history
Include contrib module in installed package
  • Loading branch information
blaix committed Mar 3, 2015
2 parents 9986955 + 29bbfe5 commit 3edf4e4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,8 @@
## 0.1.1

* Add `contrib.djproxy.XForwardedPrefix` for sending X-Forwarded-Prefix
header in local dev.

## 0.1.0

* Initial version with WSGI middleware to support X-Forwarded-Prefix
2 changes: 1 addition & 1 deletion proxyprefix/__init__.py
Expand Up @@ -4,4 +4,4 @@
"""

__version__ = '0.1.0'
__version__ = '0.1.1'
4 changes: 2 additions & 2 deletions setup.py
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import find_packages, setup

import proxyprefix

Expand All @@ -12,7 +12,7 @@
author_email='engineers@yola.com',
license='MIT (Expat)',
url='https://github.com/yola/proxyprefix',
packages=['proxyprefix'],
packages=find_packages(exclude=['tests', 'tests.*']),
test_suite='nose.collector',
classifiers=[
'License :: OSI Approved :: MIT License',
Expand Down

0 comments on commit 3edf4e4

Please sign in to comment.