6 Star 35 Fork 7

百度开源 / Quanlse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
mengzelin 提交于 2021-12-28 18:14 . V2.2.0
#!/usr/bin/python3
# -*- coding: utf8 -*-
# Copyright (c) 2021 Baidu, Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
Setup Installation
"""
from __future__ import absolute_import
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
setup(
name='Quanlse',
version='2.2.0',
description='A cloud-based platform for quantum control.',
author='Baidu Quantum',
author_email='quantum@baidu.com',
packages=find_packages(),
install_requires=[
'numpy',
'scipy',
'matplotlib',
'requests',
'bce-python-sdk-reborn'
],
python_requires='>=3.7, <4',
license='Apache 2.0'
)
Python
1
https://gitee.com/baidu/Quanlse.git
git@gitee.com:baidu/Quanlse.git
baidu
Quanlse
Quanlse
master

搜索帮助