We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a89437 commit c424693Copy full SHA for c424693
1 file changed
setup.py
@@ -9,6 +9,12 @@
9
except ImportError:
10
from distutils.core import setup
11
12
+
13
+with open('README.md', 'r') as readme:
14
+ readme_text = readme.read()
15
+ readme_text = readme_text.split('## Contributing')[0]
16
17
18
setup(
19
name='python-gitlab-submodule',
20
description='python-gitlab-submodule : '
@@ -23,5 +29,8 @@
23
29
install_requires=[
24
30
'python-gitlab>=3.0.0',
25
31
'giturlparse>=0.10.0'
26
- ]
32
+ ],
33
+ long_description=readme_text,
34
+ long_description_content_type='text/markdown',
35
+ platforms=['any']
27
36
)
0 commit comments