Skip to content

Commit

Permalink
Fix django-security packaging.
Browse files Browse the repository at this point in the history
Our manifest was incorrect. Defining one explicitly rather than using
setup.py's list of packages seems like it's more trouble than it's
worth.
  • Loading branch information
funkaoshi committed Aug 24, 2015
1 parent b391a31 commit a496e8e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
README.md
# file GENERATED by distutils, do NOT edit
setup.py
security/__init__.py
security/admin.py
Expand All @@ -12,5 +12,8 @@ security/views.py
security/auth_throttling/__init__.py
security/auth_throttling/views.py
security/migrations/0001_initial.py
security/migrations/0002_allow_null_password_expiry.py
security/migrations/__init__.py
security/south_migrations/0001_initial.py
security/south_migrations/0002_allow_null_password_expiry.py
security/south_migrations/0003_auto__add_cspreport.py
security/south_migrations/__init__.py
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ def run(self):
long_description=readme,
maintainer="SD Elements",
maintainer_email="django-security@sdelements.com",
version="0.9.1",
packages=["security", "security.migrations", "security.auth_throttling"],
version="0.9.2",
packages=["security", "security.south_migrations", "security.migrations", "security.auth_throttling"],
url='https://github.com/sdelements/django-security',
classifiers=[
'Framework :: Django',
Expand Down

0 comments on commit a496e8e

Please sign in to comment.