Skip to content
This repository has been archived by the owner on Jun 12, 2023. It is now read-only.

Commit

Permalink
Don't include docs in discovered packages (#611)
Browse files Browse the repository at this point in the history
Currently, docs is included as a separate package. This pollutes the user environment when installing the
package. This commit excludes the docs dir from the package.
  • Loading branch information
BastianZim authored May 6, 2022
1 parent 0fb96d5 commit ce9c594
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"Topic :: Scientific/Engineering",
],
keywords="qiskit sdk quantum",
packages=setuptools.find_namespace_packages(exclude=['test*']),
packages=setuptools.find_namespace_packages(exclude=['test*', 'docs']),
extras_require={
'visualization': ['matplotlib>=2.1'],
'cvx': ['cvxpy>=1.0.15'],
Expand Down

0 comments on commit ce9c594

Please sign in to comment.