File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 66 # but most users really don't require it
77 from distutils .core import setup , Command
88import timeit
9+ import os
910
1011import versioneer
1112versioneer .versionfile_source = "ecdsa/_version.py"
@@ -74,10 +75,15 @@ def do(setup_statements, statement):
7475
7576commands ["speed" ] = Speed
7677
78+ here = os .path .abspath (os .path .dirname (__file__ ))
79+ with open (os .path .join (here , "README.md" ), encoding = 'utf-8' ) as f :
80+ long_desc = f .read ()
7781
7882setup (name = "ecdsa" ,
7983 version = versioneer .get_version (),
8084 description = "ECDSA cryptographic signature library (pure python)" ,
85+ long_description = long_desc ,
86+ long_description_content_type = 'text/markdown' ,
8187 author = "Brian Warner" ,
8288 author_email = "warner-pyecdsa@lothar.com" ,
8389 url = "http://github.com/warner/python-ecdsa" ,
You can’t perform that action at this time.
0 commit comments