Skip to content

Commit eb77446

Browse files
committed
Include a long description in the setup.py file
1 parent 2d01a59 commit eb77446

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,13 @@
77

88
from setuptools import setup, find_packages
99

10+
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.'''
11+
1012
setup(name = 'qmasm',
11-
version = '4.0',
13+
version = '4.0.2',
1214
description = 'Quantum Macro Assembler',
15+
long_description = long_description,
16+
long_description_content_type = 'text/markdown',
1317
author = 'Scott Pakin',
1418
author_email = '[email protected]',
1519
classifiers = [
@@ -19,7 +23,7 @@
1923
'Programming Language :: Python :: 3',
2024
'Intended Audience :: Developers'],
2125
url = 'https://github.com/lanl/qmasm',
22-
download_url = 'https://github.com/lanl/qmasm/archive/v4.0.tar.gz',
26+
download_url = 'https://github.com/lanl/qmasm/archive/v4.0.2.tar.gz',
2327
license = 'BSD-ish',
2428
keywords = ['quantum', 'annealing', 'macro', 'assembler', 'd-wave'],
2529
entry_points = {

0 commit comments

Comments
 (0)