Skip to content
This repository was archived by the owner on May 17, 2022. It is now read-only.

Commit 783bec2

Browse files
author
Rajib Chakravorty
committed
Added opencontrols as a dependency
1 parent cd6c4f8 commit 783bec2

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Anyone interested in quantum control is welcome to contribute to this project.
1111
Table of Contents
1212
-----------------
1313

14+
1415
* `Installation <#installation>`_
1516
* `Usage <#usage>`_
1617
* `Contributing <#contributing>`_
@@ -20,7 +21,7 @@ Table of Contents
2021
Installation
2122
------------
2223

23-
Q-CTRL Qiskit can be installed through ``pip`` or from source. We recommend
24+
Q-CTRL Qiskit can be install through ``pip`` or from source. We recommend
2425
the ``pip`` distribution to get the most recent stable release. If you want the
2526
latest features then install from source.
2627

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ keywords = [
99
"quantum",
1010
"computing",
1111
"open source",
12-
"engineering"
12+
"engineering",
13+
"qiskit"
1314
]
1415
classifiers = [
1516
"Development Status :: 5 - Production/Stable",
@@ -36,6 +37,7 @@ python = ">=3.6.4,<3.8"
3637
numpy = "^1.16"
3738
scipy = "^1.3"
3839
toml = "^0.10.0"
40+
qctrl-open-controls = "^2.0.5"
3941
qiskit-ibmq-provider = "^0.3.3"
4042
qiskit-terra = "^0.10.0"
4143

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
author='Q-CTRL',
3232
author_email='[email protected]',
3333
license='Apache-2.0',
34-
keywords='quantum computing open source engineering',
34+
keywords='quantum computing open source engineering qiskit',
3535
classifiers=['Development Status :: 5 - Production/Stable', 'Environment :: Console', 'Intended Audience :: Developers', 'Intended Audience :: Education', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Operating System :: OS Independent', 'Programming Language :: Python :: 3.6', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Visualization', 'Topic :: Software Development :: Embedded Systems', 'Topic :: System :: Distributed Computing'],
3636
packages=['qctrlqiskit'],
3737
package_data={},
38-
install_requires=['numpy==1.*,>=1.16.0', 'qiskit-ibmq-provider==0.*,>=0.3.3', 'qiskit-terra==0.*,>=0.10.0', 'scipy==1.*,>=1.3.0', 'toml==0.*,>=0.10.0'],
38+
install_requires=['numpy==1.*,>=1.16.0', 'qctrl-open-controls==2.*,>=2.0.5', 'qiskit-ibmq-provider==0.*,>=0.3.3', 'qiskit-terra==0.*,>=0.10.0', 'scipy==1.*,>=1.3.0', 'toml==0.*,>=0.10.0'],
3939
extras_require={'dev': ['pylama', 'pylint', 'pylint-runner', 'pytest', 'sphinx==2.*,>=2.2.0']},
4040
)

0 commit comments

Comments
 (0)