Sequential Quantum Gate Decomposer  v1.9.3
Powerful decomposition of general unitarias into one- and two-qubit gates gates
setup.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 """
3 Created on Fri Jun 26 14:42:56 2020
4 Copyright 2020 Peter Rakyta, Ph.D.
5 
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17 
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see http://www.gnu.org/licenses/.
20 
21 @author: Peter Rakyta, Ph.D.
22 """
23 
25 
26 
27 
28 from skbuild import setup
29 from setuptools import find_packages
30 
31 from skbuild.cmaker import get_cmake_version
32 setup(
33  name="squander",
34  packages= [ 'squander' ],
35  version='1.9.3',
36  url="https://github.com/rakytap/sequential-quantum-gate-decomposer",
37  maintainer="Peter Rakyta",
38  maintainer_email="peter.rakyta@ttk.elte.hu",
39  include_package_data=True,
40  package_data = {
41  '': ['README.md', 'MANIFEST.in', 'pyproject.toml']
42  },
43  tests_require=["pytest"],
44  description='C++ library with Python interface to train quantum circuits, quantum gate synthesis and state preparation.',
45  long_description=open("./README.md", 'r').read(),
46  long_description_content_type="text/markdown",
47  keywords="test, cmake, extension",
48  classifiers=[
49  "Intended Audience :: Developers",
50  "Natural Language :: English",
51  "Programming Language :: C",
52  "Programming Language :: C++"
53  ],
54  license='Apache-2.0 license',
55 )
56 
57 
58 
59 
60 
61 
Definition: setup.py:1