Skip to content

Commit

Permalink
Merge pull request #725 from girder/windows-extras
Browse files Browse the repository at this point in the history
Use a different format for specifying extras based on platform.
  • Loading branch information
manthey authored Dec 13, 2021
2 parents ffe4dbd + 2801c42 commit 15033ee
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import itertools
import os
import platform

from setuptools import setup

Expand All @@ -10,7 +9,7 @@
long_description = readme

extraReqs = {
'memcached': ['pylibmc>=1.5.1'] if platform.system() != 'Windows' else [],
'memcached': ['pylibmc>=1.5.1 ; platform_system != "Windows"'],
'converter': ['large-image-converter'],
}
sources = {
Expand Down

0 comments on commit 15033ee

Please sign in to comment.