From 9822293dfae944a78d17580ce8574ff3665b2c57 Mon Sep 17 00:00:00 2001 From: Sabar Dasgupta Date: Mon, 27 Feb 2023 15:58:22 -0500 Subject: [PATCH 1/3] specify markdown as description content_type --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index ad8bd3b..0f9ec81 100644 --- a/setup.py +++ b/setup.py @@ -35,6 +35,7 @@ version=version, description="Graphene SQLAlchemy integration", long_description=open("README.md").read(), + long_description_content_type="text/markdown", url="https://github.com/graphql-python/graphene-sqlalchemy", project_urls={ "Documentation": "https://docs.graphene-python.org/projects/sqlalchemy/en/latest", From bb4bb09cd30c9300cc5036ef314f49583441c738 Mon Sep 17 00:00:00 2001 From: Sabar Dasgupta Date: Mon, 27 Feb 2023 16:24:36 -0500 Subject: [PATCH 2/3] use absolute paths in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6e96f91..f98961e 100644 --- a/README.md +++ b/README.md @@ -109,11 +109,11 @@ schema = graphene.Schema(query=Query) ### Full Examples -To learn more check out the following [examples](examples/): +To learn more check out the following [examples](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/): -- [Flask SQLAlchemy example](examples/flask_sqlalchemy) -- [Nameko SQLAlchemy example](examples/nameko_sqlalchemy) +- [Flask SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/flask_sqlalchemy) +- [Nameko SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/nameko_sqlalchemy) ## Contributing -See [CONTRIBUTING.md](/CONTRIBUTING.md) +See [CONTRIBUTING.md](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/CONTRIBUTING.md) From b6668a019a3504a2c12f9814757322bc77bdac8f Mon Sep 17 00:00:00 2001 From: Sabar Dasgupta Date: Mon, 27 Feb 2023 16:26:09 -0500 Subject: [PATCH 3/3] use tree for dirs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f98961e..29da89d 100644 --- a/README.md +++ b/README.md @@ -109,10 +109,10 @@ schema = graphene.Schema(query=Query) ### Full Examples -To learn more check out the following [examples](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/): +To learn more check out the following [examples](https://github.com/graphql-python/graphene-sqlalchemy/tree/master/examples/): -- [Flask SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/flask_sqlalchemy) -- [Nameko SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/blob/master/examples/nameko_sqlalchemy) +- [Flask SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/tree/master/examples/flask_sqlalchemy) +- [Nameko SQLAlchemy example](https://github.com/graphql-python/graphene-sqlalchemy/tree/master/examples/nameko_sqlalchemy) ## Contributing