Skip to content

Commit fb4979f

Browse files
committed
Make mysqlclient an optional dependency
1 parent 5b85d99 commit fb4979f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@
137137
install_requires = [
138138
"future",
139139
"backports.csv",
140-
"mysqlclient",
141140
"beautifulsoup4",
142141
"lxml",
143142
"feedparser",
@@ -149,5 +148,8 @@
149148
"cherrypy",
150149
"requests"
151150
],
151+
extra_requires = {
152+
'mysql': ["mysqlclient"],
153+
},
152154
zip_safe = False
153155
)

0 commit comments

Comments
 (0)