mirror of
https://github.com/morgan9e/noiseprotocol
synced 2026-04-14 00:14:05 +09:00
Update setup.py for PyPI. Version bump
This commit is contained in:
10
setup.py
10
setup.py
@@ -4,12 +4,16 @@ from os import path
|
||||
|
||||
here = path.abspath(path.dirname(__file__))
|
||||
|
||||
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||||
long_description = f.read()
|
||||
try:
|
||||
import pypandoc
|
||||
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||||
long_description = pypandoc.convert('README.md', 'rst')
|
||||
except (IOError, ImportError):
|
||||
long_description = 'Check https://github.com/plizonczyk/noiseprotocol for readme.'
|
||||
|
||||
setup(
|
||||
name='noiseprotocol',
|
||||
version='0.1.0',
|
||||
version='0.1.1',
|
||||
description='Implementation of Noise Protocol Framework',
|
||||
long_description=long_description,
|
||||
url='https://github.com/plizonczyk/noiseprotocol',
|
||||
|
||||
Reference in New Issue
Block a user