File tree 1 file changed +4
-1
lines changed
1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 16
16
with open ('test-requirements.txt' ) as reqs_file :
17
17
test_requirements = reqs_file .read ().splitlines ()
18
18
19
+ with open ('README.md' ) as rm_file :
20
+ long_description = rm_file .read ()
19
21
20
22
class build_py (_build_py ):
21
23
@@ -82,7 +84,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
82
84
name = "GitPython" ,
83
85
cmdclass = {'build_py' : build_py , 'sdist' : sdist },
84
86
version = VERSION ,
85
- description = "Python Git Library " ,
87
+ description = """GitPython is a python library used to interact with Git repositories"" " ,
86
88
author = "Sebastian Thiel, Michael Trier" ,
87
89
author_email = "byronimo@gmail.com, mtrier@gmail.com" ,
88
90
license = "BSD" ,
@@ -96,6 +98,7 @@ def build_py_modules(basedir: str, excludes: Sequence = ()) -> Sequence:
96
98
tests_require = requirements + test_requirements ,
97
99
zip_safe = False ,
98
100
long_description = """GitPython is a python library used to interact with Git repositories""" ,
101
+ long_description_content_type = "text/markdown" ,
99
102
classifiers = [
100
103
# Picked from
101
104
# http://pypi.python.org/pypi?:action=list_classifiers
You can’t perform that action at this time.
0 commit comments