Skip to content

Commit 0636da2

Browse files
committed
Merge pull request pyapi-gitlab#97 from BlackMesh/master
Markdown needs to be an optional dependency in the setup.py
2 parents 814a686 + 280f68b commit 0636da2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@
55
name = "pyapi-gitlab",
66
version = "6.2.3",
77
packages = find_packages(),
8-
install_requires = ['requests', 'markdown'],
8+
install_requires = ['requests'],
9+
extras_require = {
10+
'markdown': ["markdown"]
11+
},
912
# metadata for upload to PyPI
1013
author = "Itxaka Serrano Garcia",
1114
author_email = "itxakaserrano@gmail.com",

0 commit comments

Comments
 (0)