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 7a798c6 commit 82fccc8Copy full SHA for 82fccc8
setup.py
@@ -1,11 +1,19 @@
1
"""Configuration for python project."""
2
3
+from os import path
4
+
5
from setuptools import setup
6
7
+this_directory = path.abspath(path.dirname(__file__))
8
+with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
9
+ long_description = f.read()
10
11
setup(
12
name="python_graphql_client",
13
version="0.1.0",
14
description="Python GraphQL Client",
15
+ long_description=long_description,
16
+ long_description_content_type="text/markdown",
17
classifiers=[
18
"Development Status :: 3 - Alpha",
19
"Intended Audience :: Developers",
0 commit comments