Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit 3c8dbc4

Browse files
committed
Fixed 'find_packages' in setup.py.
1 parent af94acc commit 3c8dbc4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

doc/Dependencies.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ or install the package directly from PyPI (see :ref:`INSTALL`).
3535
3636
.. rubric:: Dependency List
3737

38-
+----------------------------------------------------------------+-------------+-------+-----------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
38+
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
3939
| **Package** | **Version** | **License** | **Dependencies** |
40-
+================================================================+=============+==========+=====================================================================+==========+======================================================================================================================================================================+
40+
+================================================================+=============+===========================================================================================+======================================================================================================================================================================+
4141
| `colorama <https://github.com/tartley/colorama>`__ | ≥0.4.4 | `BSD-3-Clause <https://github.com/tartley/colorama/blob/master/LICENSE.txt>`__ | None |
4242
+----------------------------------------------------------------+-------------+-------------------------------------------------------------------------------------------+----------------------------------------------------------------------------------------------------------------------------------------------------------------------+
4343
| `pydecor <https://github.com/mplanchard/pydecor>`__ | ≥2.0.1 | `MIT <https://github.com/mplanchard/pydecor/blob/master/LICENSE>`__ | * `dill <https://github.com/uqfoundation/dill>`__ (`BSD 3-clause <https://github.com/uqfoundation/dill/blob/master/LICENSE>`__) |

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
},
6767
# download_url="",
6868

69-
packages=setuptools.find_packages(),
69+
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
7070
classifiers=[
7171
"License :: OSI Approved :: Apache Software License",
7272
"Operating System :: OS Independent",

0 commit comments

Comments
 (0)