forked from lanl/qmasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 loc) · 1.88 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#! /usr/bin/env python
###################################
# Install QMASM #
# By Scott Pakin <pakin@lanl.gov> #
###################################
from setuptools import setup, find_packages
long_description = '''QMASM fills a gap in the software ecosystem for [D-Wave's adiabatic quantum computers](http://www.dwavesys.com/) by shielding the programmer from having to know system-specific hardware details while still enabling programs to be expressed at a fairly low level of abstraction. It is therefore analogous to a conventional macro assembler and can be used in much the same way: as a target either for programmers who want a great deal of control over the hardware or for compilers that implement higher-level languages.'''
setup(name = 'qmasm',
version = '4.1',
description = 'Quantum Macro Assembler',
long_description = long_description,
long_description_content_type = 'text/markdown',
author = 'Scott Pakin',
author_email = 'pakin@lanl.gov',
classifiers = [
'Topic :: Software Development :: Compilers',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Programming Language :: Python :: 3',
'Intended Audience :: Developers'],
url = 'https://github.com/lanl/qmasm',
download_url = 'https://github.com/lanl/qmasm/archive/v4.1.tar.gz',
license = 'BSD-ish',
keywords = ['quantum', 'annealing', 'macro', 'assembler', 'd-wave'],
entry_points = {
'console_scripts': ['qmasm = qmasm.__main__:main']
},
scripts = ['scripts/qb2qmasm',
'extras/qmasm-gen-all-to-all',
'extras/qmasm-gen-chimera',
'extras/qmasm-gen-current'],
packages = find_packages('src'),
package_dir = {'': 'src'},
python_requires = '>= 3.8',
install_requires = ['dwave-ocean-sdk']
)