Skip to content

Commit bb7aec8

Browse files
authored
Merge pull request #1 from prodigyeducation/fix/setup-fields
Fix/setup fields
2 parents aaeccf5 + 2718b3f commit bb7aec8

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

setup.py

Lines changed: 10 additions & 2 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",
7-
version="0.1.0",
13+
version="0.1.1",
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",
@@ -16,7 +24,7 @@
1624
"Programming Language :: Python :: 3.8",
1725
],
1826
keywords="api graphql client",
19-
url="https://github.com/SMARTeacher/python-graphql-client", # TODO change this
27+
url="https://github.com/prodigyeducation/python-graphql-client",
2028
author="Justin Krinke",
2129
author_email="opensource@prodigygame.com",
2230
license="MIT",

0 commit comments

Comments
 (0)