Skip to content

Commit

Permalink
Added inits
Browse files Browse the repository at this point in the history
  • Loading branch information
shahidee44 committed Jan 25, 2023
1 parent 62848c0 commit e3a91ab
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
Empty file.
Empty file.
Empty file.
Empty file.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
with open("README.md", "r") as fh:
long_description = fh.read()

with open("openqaoa/_version.py") as f:
with open("openqaoa/openqaoa-core/_version.py") as f:
version = f.readlines()[-1].split()[-1].strip("\"'")

requirements = [
Expand Down Expand Up @@ -55,7 +55,7 @@
version= version,
author="Entropica Labs",
packages=find_namespace_packages(where="./openqaoa"),
package_dir={'openqaoa':'openqaoa/openqaoa-core',
package_dir={'':'openqaoa', 'openqaoa':'openqaoa/openqaoa-core',
'openqaoa_braket': 'openqaoa/openqaoa-braket',
'openqaoa_qiskit': 'openqaoa/openqaoa-qiskit',
'openqaoa_pyquil': 'openqaoa/openqaoa-pyquil',
Expand All @@ -65,7 +65,7 @@
install_requires= requirements,
license="Apache 2.0",
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",
long_description=long_description,
long_description=long_descriptionini,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3.8",
Expand Down

0 comments on commit e3a91ab

Please sign in to comment.