1 Star 0 Fork 0

CPLABonus/UltraDict

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 969 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ronny Rentner 提交于 2022-09-06 12:23 +08:00 . Dev (#18)
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",
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/CPLiu/UltraDict.git
git@gitee.com:CPLiu/UltraDict.git
CPLiu
UltraDict
UltraDict
main

搜索帮助