forked from entropicalabs/openqaoa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated setup.py and pyproject.toml, use setuptools for setup
- Loading branch information
1 parent
732b695
commit 6141f0f
Showing
2 changed files
with
12 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,3 @@ | ||
[tool.poetry] | ||
name = "openqaoa" | ||
version = "0.1.19" | ||
description = "OpenQAOA is a python open-source multi-backend Software Development Kit to create, customise and execute the Quantum Approximate Optimisation Algorithm (QAOA) on Noisy Intermediate-Scale Quantum (NISQ) devices, and simulators" | ||
authors = ["Entropica Labs"] | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/entropicalabs/openqaoa" | ||
homepage = "https://openqaoa.entropicalabs.com/" | ||
documentation = "https://el-openqaoa.readthedocs.io/en/main/" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Operating System :: OS Independent" | ||
] | ||
packages = [ | ||
{include = "src"} | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.11" | ||
openqaoa-core = {path = "./src/openqaoa-core", develop = true} | ||
openqaoa-qiskit = {path = "./src/openqaoa-qiskit", develop = true} | ||
openqaoa-azure = {path = "./src/openqaoa-azure", develop = true} | ||
openqaoa-pyquil = {path = "./src/openqaoa-pyquil", develop = true} | ||
openqaoa-braket = {path = "./src/openqaoa-braket", develop = true} | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["setuptools>=61.0"] | ||
build-backend = "setuptools.build_meta" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters