We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7556a41 commit 7b0b958Copy full SHA for 7b0b958
setup.py
@@ -6,16 +6,20 @@
6
"""
7
from setuptools import setup
8
9
+from pathlib import Path
10
+this_directory = Path(__file__).parent
11
+long_description = (this_directory / "README.md").read_text()
12
13
setup(
14
name='Flask-OneID',
- version='1.0.0',
15
+ version='1.0.1',
16
url='https://github.com/Odya-LLC/flask_oneid',
17
license='MIT',
18
author='odya',
19
author_email='support@odya.uz',
20
description='OneID integration with Flask application, (only for Uzbekistan)',
- long_description=__doc__,
21
+ long_description=long_description,
22
+ long_description_content_type='text/markdown',
23
packages=['flask_oneid'],
24
zip_safe=False,
25
include_package_data=True,
0 commit comments