Skip to content

Commit 82fccc8

Browse files
committed
feat: create project description from README
1 parent 7a798c6 commit 82fccc8

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

setup.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
"""Configuration for python project."""
22

3+
from os import path
4+
35
from setuptools import setup
46

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+
511
setup(
612
name="python_graphql_client",
713
version="0.1.0",
814
description="Python GraphQL Client",
15+
long_description=long_description,
16+
long_description_content_type="text/markdown",
917
classifiers=[
1018
"Development Status :: 3 - Alpha",
1119
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)