minor version update to handle long_description_content_type for pypi
This commit is contained in:
parent
43b2a0bd98
commit
4a8d445c9e
@ -2,4 +2,4 @@
|
||||
Kademlia is a Python implementation of the Kademlia protocol which
|
||||
utilizes the asyncio library.
|
||||
"""
|
||||
__version__ = "2.1"
|
||||
__version__ = "2.2"
|
||||
|
3
setup.py
3
setup.py
@ -6,7 +6,8 @@ setup(
|
||||
name="kademlia",
|
||||
version=kademlia.__version__,
|
||||
description="Kademlia is a distributed hash table for decentralized peer-to-peer computer networks.",
|
||||
long_description=open("README.md").read(),
|
||||
long_description=open("README.md", encoding='utf-8').read(),
|
||||
long_description_content_type='text/markdown',
|
||||
author="Brian Muller",
|
||||
author_email="bamuller@gmail.com",
|
||||
license="MIT",
|
||||
|
Loading…
Reference in New Issue
Block a user