File: __about__.py

package info (click to toggle)
django-celery-email 3.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 168 kB
  • sloc: python: 494; makefile: 8
file content (16 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
__all__ = [
    '__title__', '__summary__', '__uri__', '__version__', '__author__',
    '__email__', '__license__', '__copyright__',
]

__title__ = 'django-celery-email'
__summary__ = 'An async Django email backend using celery'
__uri__ = 'https://github.com/pmclanahan/django-celery-email'

__version__ = '3.0.0'

__author__ = 'Paul McLanahan'
__email__ = 'paul@mclanahan.net'

__license__ = 'BSD'
__copyright__ = 'Copyright 2015 {0}'.format(__author__)