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 11"""Configuration for python project."""
22
3+ from os import path
4+
35from 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+
511setup (
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" ,
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" ,
21292230 license = "MIT" ,
You can’t perform that action at this time.
0 commit comments