python安装nebula2-python包报错

from setuptools import setup, find_packages,sic
setup(
    name='nebula2-python',  
    version=sic('2.0.0-1'),    
    #version=('2.0.0-be'),
    license="Apache 2.0 + Common Clause 1.0",
    author='vesoft-inc',
    author_email='info@vesoft.com',
    long_description='Python client for Nebula Graph V2.0',
    url='https://github.com/vesoft-inc/nebula-python',
    install_requires=['httplib2',
                      'future',
                      'six',
                      'futures; python_version == "2.7"'],
    packages=find_packages(),
    platforms=["2.7, 3.5, 3.7"],
    package_dir={'nebula2': 'nebula2',
                 'thirft': 'thirft'},
)

提示SIC包不存在,是我python版本的问题嘛

请看这里 https://github.com/vesoft-inc/nebula-python/issues/69

谢谢 解决了