|
@@ -22,6 +22,12 @@ on_rtd = os.environ.get('READTHEDOCS')
|
|
|
# Note: 0.4.7 is also OK, but has no Python 3.2 support any more.
|
|
|
install_requires=['msgpack-python==0.4.6', ]
|
|
|
|
|
|
+extras_require = {
|
|
|
+ # llfuse 0.40 (tested, proven, ok)
|
|
|
+ # llfuse 0.41 (unknown, maybe ok)
|
|
|
+ # llfuse 0.42 (tested, does not work, incompatible api changes)
|
|
|
+ 'fuse': ['llfuse<0.41', ],
|
|
|
+}
|
|
|
|
|
|
from setuptools import setup, Extension
|
|
|
from setuptools.command.sdist import sdist
|
|
@@ -260,4 +266,5 @@ setup(
|
|
|
ext_modules=ext_modules,
|
|
|
setup_requires=['setuptools_scm>=1.7'],
|
|
|
install_requires=install_requires,
|
|
|
+ extras_require=extras_require,
|
|
|
)
|