From 7a798c61cb44046c4240f08138337a136fa8b83b Mon Sep 17 00:00:00 2001 From: Lennox Stevenson Date: Mon, 20 Jan 2020 23:32:25 -0500 Subject: [PATCH 1/3] fix: pypi link to new public repository --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0777ab5..07a350f 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ "Programming Language :: Python :: 3.8", ], keywords="api graphql client", - url="https://github.com/SMARTeacher/python-graphql-client", # TODO change this + url="https://github.com/prodigyeducation/python-graphql-client", author="Justin Krinke", author_email="opensource@prodigygame.com", license="MIT", From 82fccc8052b80473be9c33441f8cd764a8b5fdf1 Mon Sep 17 00:00:00 2001 From: Lennox Stevenson Date: Mon, 20 Jan 2020 23:34:39 -0500 Subject: [PATCH 2/3] feat: create project description from README --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.py b/setup.py index 07a350f..e186d2f 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,19 @@ """Configuration for python project.""" +from os import path + from setuptools import setup +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, "README.md"), encoding="utf-8") as f: + long_description = f.read() + setup( name="python_graphql_client", version="0.1.0", description="Python GraphQL Client", + long_description=long_description, + long_description_content_type="text/markdown", classifiers=[ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", From 2718b3fc1a44966d3083a96aadd394dbbcc6b9c1 Mon Sep 17 00:00:00 2001 From: Lennox Stevenson Date: Mon, 20 Jan 2020 23:48:16 -0500 Subject: [PATCH 3/3] chore: bump version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e186d2f..aa217ef 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="python_graphql_client", - version="0.1.0", + version="0.1.1", description="Python GraphQL Client", long_description=long_description, long_description_content_type="text/markdown",