代码拉取完成,页面将自动刷新
from pathlib import Path
from setuptools import setup, Extension
import Cython.Build
# read the contents of your README file
this_directory = Path(__file__).parent
long_description = (this_directory / "readme.md").read_text()
version = '0.0.6'
ext = Extension(name="UltraDict", sources=["UltraDict.py"])
setup(
name='UltraDict',
version=version,
description='Sychronized, streaming dictionary that uses shared memory as a backend',
long_description=long_description,
long_description_content_type='text/markdown',
author='Ronny Rentner',
author_email='ultradict.code@ronny-rentner.de',
url='https://github.com/ronny-rentner/UltraDict',
cmdclass={'build_ext': Cython.Build.build_ext},
package_dir={'UltraDict': '.'},
packages=['UltraDict'],
zip_safe=False,
ext_modules=Cython.Build.cythonize(ext, compiler_directives={'language_level' : "3"}),
setup_requires=['cython>=0.24.1'],
python_requires=">=3.8",
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。