Skip to content

Commit 7b0b958

Browse files
committed
readme fix
1 parent 7556a41 commit 7b0b958

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,20 @@
66
"""
77
from setuptools import setup
88

9+
from pathlib import Path
10+
this_directory = Path(__file__).parent
11+
long_description = (this_directory / "README.md").read_text()
912

1013
setup(
1114
name='Flask-OneID',
12-
version='1.0.0',
15+
version='1.0.1',
1316
url='https://github.com/Odya-LLC/flask_oneid',
1417
license='MIT',
1518
author='odya',
1619
author_email='support@odya.uz',
1720
description='OneID integration with Flask application, (only for Uzbekistan)',
18-
long_description=__doc__,
21+
long_description=long_description,
22+
long_description_content_type='text/markdown',
1923
packages=['flask_oneid'],
2024
zip_safe=False,
2125
include_package_data=True,

0 commit comments

Comments
 (0)