-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
22 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
lint: | ||
pip install --use-mirrors flake8 | ||
flake8 ./mailview | ||
flake8 ./mailviews | ||
|
||
clean: | ||
find . -name *.pyc -delete | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
from django.core.management import execute_manager | ||
|
||
from mailview.tests import settings | ||
from mailviews.tests import settings | ||
|
||
if __name__ == "__main__": | ||
execute_manager(settings) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,27 +6,27 @@ | |
|
||
|
||
def get_version(): | ||
from mailview import __version__ | ||
from mailviews import __version__ | ||
return '.'.join(map(str, __version__)) | ||
|
||
try: | ||
version = get_version() | ||
except ImportError: | ||
sys.path.append(os.path.join(os.path.dirname(__file__), 'mailview')) | ||
sys.path.append(os.path.join(os.path.dirname(__file__), 'mailviews')) | ||
version = get_version() | ||
|
||
|
||
install_requires = ['django'] | ||
|
||
setup(name='django-mailview', | ||
setup(name='django-mailviews', | ||
version=version, | ||
url='http://github.com/disqus/django-mailview/', | ||
url='http://github.com/disqus/django-mailviews/', | ||
author='ted kaemming', | ||
author_email='[email protected]', | ||
description='Class-based mail views for Django', | ||
packages=find_packages(), | ||
include_package_data=True, | ||
install_requires=install_requires, | ||
test_suite='mailview.tests.run', | ||
test_suite='mailviews.tests.run', | ||
zip_safe=False, | ||
) |