Skip to content

Commit

Permalink
Don't include docs in discovered packages (qiskit-community#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.

(cherry picked from commit ce9c594)
  • Loading branch information
BastianZim authored and mtreinish committed May 17, 2022
1 parent d45e3d4 commit c05301a
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 c05301a

Please sign in to comment.