Skip to content

Commit

Permalink
Fixed typo in README.
Browse files Browse the repository at this point in the history
Added contact info and URL to setup.py
  • Loading branch information
movermeyer committed Jul 5, 2018
1 parent 34df91f commit e1192e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ For those who need to support earlier versions of Python, a backport of these me
.. _`datetime.isoformat`: https://docs.python.org/3/library/datetime.html#datetime.date.isoformat

``backports.datetime_fromisoformat`` is a C implementation of ``fromisoformat`` based on the upstream cPython 3.7 code.
For timezone objects, it uses the a custom ``timezone`` C implementation (originally from `Pendulum`_).
For timezone objects, it uses a custom ``timezone`` C implementation (originally from `Pendulum`_).

.. _`Pendulum`: https://pendulum.eustace.io/

Expand Down
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
description="Backport of Python 3.7's datetime.fromisoformat",
long_description=long_description,
license="MIT",
author="Michael Overmeyer",
author_email="[email protected]",
url="https://github.com/movermeyer/backports.datetime_fromisoformat",
ext_package="backports",
ext_modules=[Extension("_datetime_fromisoformat", [
os.path.join("backports", "_datetime_fromisoformat", "module.c"),
Expand Down

0 comments on commit e1192e9

Please sign in to comment.