Skip to content

Commit 83f3500

Browse files
committed
chore: Fix setup.py
1 parent 15657b0 commit 83f3500

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

readme.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Python Low Level Client for CloudQuery Plugin
2+
=============================
3+
4+
Overview
5+
-----------
6+
7+
This is low level gRPC APIs for CloudQuery Plugin. Please see more on [github.com/cloudquery/plugin-pb-pyton](https://github.com/cloudquery/plugin-pb-pyton)

setup.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,22 @@
1919

2020
package_root = os.path.abspath(os.path.dirname(__file__))
2121

22+
readme_filename = os.path.join(package_root, "README.rst")
23+
with io.open(readme_filename, encoding="utf-8") as readme_file:
24+
readme = readme_file.read()
25+
2226
packages = [
2327
package
2428
for package in setuptools.PEP420PackageFinder.find()
2529
if package.startswith("cloudquery")
2630
]
2731
setuptools.setup(
2832
name=name,
29-
version="0.0.3",
33+
version="0.0.4",
3034
description=description,
35+
long_description=readme,
3136
author="CloudQuery LTD",
32-
author_email="cloudquery[email protected]",
37+
author_email="pypi[email protected]",
3338
license="MPL-2.0",
3439
url=url,
3540
classifiers=[

0 commit comments

Comments
 (0)