3 Star 10 Fork 2

Gitee 极速下载 / acqdp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/alibaba/acqdp
克隆/下载
setup.py 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
from setuptools import setup, find_packages
import os.path
this_dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_dir, "README.md"), "r") as fh:
long_description = fh.read()
try:
from Cython.Build import cythonize
except ImportError:
print('Installing QDP without Cython...')
def cythonize(*args, **kwargs):
return []
setup(
name='acqdp',
version='0.1.1',
description='Alibaba Cloud Quantum Development Platform',
long_description=long_description,
long_description_content_type='text/markdown',
author='Alibaba Quantum Lab',
author_email='aql_software@alibabacloud.com',
license='MIT',
url='https://github.com/alibaba/acqdp',
packages=find_packages(include=['acqdp*']),
package_data={'acqdp': ['*.ini', '*.json']},
include_package_data=True,
ext_modules=cythonize('acqdp/utility/*.pyx'),
zip_safe=False,
install_requires=[
'numpy',
'scipy',
'networkx',
'numexpr',
'matplotlib',
'opt_einsum',
'kahypar == 1.1.2',
'cma',
'jax',
'jaxlib',
'tqdm'
],
python_requires='>=3.7'
)
Python
1
https://gitee.com/mirrors/acqdp.git
git@gitee.com:mirrors/acqdp.git
mirrors
acqdp
acqdp
main

搜索帮助