Skip to content

Commit bbbd253

Browse files
authored
Merge pull request #187 from lavr/fix/docs-and-metadata-cleanup
Clean up documentation and project metadata
2 parents f7c3582 + ce1b0e7 commit bbbd253

9 files changed

Lines changed: 9 additions & 41 deletions

File tree

.pyup.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

README.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ and more:
3030

3131
|
3232
33-
Documentation: `python-emails.readthedocs.org <http://python-emails.readthedocs.org/>`_
33+
Documentation: `python-emails.readthedocs.io <https://python-emails.readthedocs.io/>`_
3434

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

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

46-
.. image:: https://coveralls.io/repos/lavr/python-emails/badge.svg?branch=master
47-
:target: https://coveralls.io/r/lavr/python-emails?branch=master

docs/conf_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
# General information about the project.
5353
project = u'python-emails'
54-
copyright = u'2015, Sergey Lavrinenko'
54+
copyright = u'2015-2026, Sergey Lavrinenko'
5555

5656
# The version info for the project you're documenting, acts as replacement for
5757
# |version| and |release|, also used in various other places throughout the

docs/install.rst

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,4 @@ Install from pypi:
66

77
.. code-block:: bash
88
9-
$ [sudo] pip install emails
10-
11-
Install on Ubuntu from PPA:
12-
13-
.. code-block:: bash
14-
15-
$ [sudo] add-apt-repository ppa:lavrme/python-emails-ppa
16-
$ [sudo] apt-get update
17-
$ [sudo] apt-get install python-emails
9+
$ pip install emails

docs/links.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ There are plenty other python email-around libraries that may fit your needs:
66

77
- `premailer <https://github.com/peterbe/premailer>`_
88
- `flask-mail <https://github.com/mattupstate/flask-mail>`_
9-
- `pyzmail <http://www.magiksys.net/pyzmail/>`_
109
- `marrow.mailer <https://github.com/marrow/marrow.mailer>`_

docs/todo.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,5 @@ TODO
44

55
- Documentation
66
- Increase test coverage
7-
- Feature: load message from rfc2822
87
- Feature: export message to directory or zipfile
9-
- Distribution: deb package (`debianization example <https://github.com/lavr/python-emails-debian/>`_)
10-
- Distribution: rpm package
11-
- Other: Flask extension
128
- Feature: ESP integration - Amazon SES, SendGrid, ...

emails/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
Links
3131
`````
3232
33-
* `documentation <http://python-emails.readthedocs.org/>`_
34-
* `source code <http://github.com/lavr/python-emails>`_
33+
* `documentation <https://python-emails.readthedocs.io/>`_
34+
* `source code <https://github.com/lavr/python-emails>`_
3535
3636
"""
3737

@@ -41,7 +41,7 @@
4141
__version__ = '0.6'
4242
__author__ = 'Sergey Lavrinenko'
4343
__license__ = 'Apache 2.0'
44-
__copyright__ = 'Copyright 2013-2019 Sergey Lavrinenko'
44+
__copyright__ = 'Copyright 2013-2026 Sergey Lavrinenko'
4545

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

requirements/tests-2.7.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
Links
3333
`````
3434
35-
* `documentation <http://python-emails.readthedocs.org/>`_
36-
* `source code <http://github.com/lavr/python-emails>`_
35+
* `documentation <https://python-emails.readthedocs.io/>`_
36+
* `source code <https://github.com/lavr/python-emails>`_
3737
3838
"""
3939

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

0 commit comments

Comments
 (0)