Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .pyup.yml

This file was deleted.

4 changes: 1 addition & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ and more:

|

Documentation: `python-emails.readthedocs.org <http://python-emails.readthedocs.org/>`_
Documentation: `python-emails.readthedocs.io <https://python-emails.readthedocs.io/>`_

Flask extension: `flask-emails <https://github.com/lavr/flask-emails>`_

Expand All @@ -43,5 +43,3 @@ Flask extension: `flask-emails <https://github.com/lavr/flask-emails>`_
.. image:: https://img.shields.io/pypi/v/emails.svg
:target: https://pypi.python.org/pypi/emails

.. image:: https://coveralls.io/repos/lavr/python-emails/badge.svg?branch=master
:target: https://coveralls.io/r/lavr/python-emails?branch=master
2 changes: 1 addition & 1 deletion docs/conf_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

# General information about the project.
project = u'python-emails'
copyright = u'2015, Sergey Lavrinenko'
copyright = u'2015-2026, Sergey Lavrinenko'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
10 changes: 1 addition & 9 deletions docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,4 @@ Install from pypi:

.. code-block:: bash

$ [sudo] pip install emails

Install on Ubuntu from PPA:

.. code-block:: bash

$ [sudo] add-apt-repository ppa:lavrme/python-emails-ppa
$ [sudo] apt-get update
$ [sudo] apt-get install python-emails
$ pip install emails
1 change: 0 additions & 1 deletion docs/links.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ There are plenty other python email-around libraries that may fit your needs:

- `premailer <https://github.com/peterbe/premailer>`_
- `flask-mail <https://github.com/mattupstate/flask-mail>`_
- `pyzmail <http://www.magiksys.net/pyzmail/>`_
- `marrow.mailer <https://github.com/marrow/marrow.mailer>`_
4 changes: 0 additions & 4 deletions docs/todo.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,5 @@ TODO

- Documentation
- Increase test coverage
- Feature: load message from rfc2822
- Feature: export message to directory or zipfile
- Distribution: deb package (`debianization example <https://github.com/lavr/python-emails-debian/>`_)
- Distribution: rpm package
- Other: Flask extension
- Feature: ESP integration - Amazon SES, SendGrid, ...
6 changes: 3 additions & 3 deletions emails/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
Links
`````

* `documentation <http://python-emails.readthedocs.org/>`_
* `source code <http://github.com/lavr/python-emails>`_
* `documentation <https://python-emails.readthedocs.io/>`_
* `source code <https://github.com/lavr/python-emails>`_

"""

Expand All @@ -41,7 +41,7 @@
__version__ = '0.6'
__author__ = 'Sergey Lavrinenko'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2013-2019 Sergey Lavrinenko'
__copyright__ = 'Copyright 2013-2026 Sergey Lavrinenko'

USER_AGENT = 'python-emails/%s' % __version__

Expand Down
9 changes: 0 additions & 9 deletions requirements/tests-2.7.txt

This file was deleted.

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
Links
`````

* `documentation <http://python-emails.readthedocs.org/>`_
* `source code <http://github.com/lavr/python-emails>`_
* `documentation <https://python-emails.readthedocs.io/>`_
* `source code <https://github.com/lavr/python-emails>`_

"""

Expand Down Expand Up @@ -111,7 +111,7 @@ def find_version(*file_paths):
version=find_version('emails/__init__.py'),
description='Modern python library for emails.',
long_description=__doc__,
long_description_content_type='text/markdown',
long_description_content_type='text/x-rst',
author='Sergey Lavrinenko',
author_email='s@lavr.me',
url='https://github.com/lavr/python-emails',
Expand Down
Loading