File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change 1
1
"""Configuration for python project."""
2
2
3
+ from os import path
4
+
3
5
from setuptools import setup
4
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
+
5
11
setup (
6
12
name = "python_graphql_client" ,
7
- version = "0.1.0 " ,
13
+ version = "0.1.1 " ,
8
14
description = "Python GraphQL Client" ,
15
+ long_description = long_description ,
16
+ long_description_content_type = "text/markdown" ,
9
17
classifiers = [
10
18
"Development Status :: 3 - Alpha" ,
11
19
"Intended Audience :: Developers" ,
16
24
"Programming Language :: Python :: 3.8" ,
17
25
],
18
26
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" ,
20
28
author = "Justin Krinke" ,
21
29
author_email = "opensource@prodigygame.com" ,
22
30
license = "MIT" ,
You can’t perform that action at this time.
0 commit comments