Skip to content

Commit

Permalink
upload project description too
Browse files Browse the repository at this point in the history
  • Loading branch information
tomato42 committed Apr 17, 2019
1 parent 54a8ac3 commit 7221f8b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
# but most users really don't require it
from distutils.core import setup, Command
import timeit
import os

import versioneer
versioneer.versionfile_source = "ecdsa/_version.py"
Expand Down Expand Up @@ -74,10 +75,15 @@ def do(setup_statements, statement):

commands["speed"] = Speed

here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, "README.md"), encoding='utf-8') as f:

This comment has been minimized.

Copy link
@firass

firass Apr 17, 2019

Hi there! It looks like the encoding keyword argument is not valid in python 2.7:
TypeError: 'encoding' is an invalid keyword argument for this function

This comment has been minimized.

Copy link
@tomato42

tomato42 Apr 17, 2019

Author Member

yes, sorry about it!

noticed that myself just a moment ago - 0.13.2 released which fixes it (e90ad85)

long_desc = f.read()

setup(name="ecdsa",
version=versioneer.get_version(),
description="ECDSA cryptographic signature library (pure python)",
long_description=long_desc,
long_description_content_type='text/markdown',
author="Brian Warner",
author_email="[email protected]",
url="http://github.com/warner/python-ecdsa",
Expand Down

0 comments on commit 7221f8b

Please sign in to comment.