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 14020f4 commit 4690a3cCopy full SHA for 4690a3c
setup.py
@@ -1,6 +1,8 @@
1
# -*- coding: utf-8 -*-
2
import setuptools
3
4
+with open("README.md", "r") as r:
5
+ long_description = r.read()
6
7
setuptools.setup(
8
name="ydb",
@@ -11,6 +13,8 @@
11
13
url="http://github.com/ydb-platform/ydb-python-sdk",
12
14
license="Apache 2.0",
15
package_dir={"": "."},
16
+ long_description=long_description,
17
+ long_description_content_type='text/markdown',
18
packages=setuptools.find_packages("."),
19
classifiers=[
20
"Programming Language :: Python",
0 commit comments