From b11cafd78686780b388866ff6009853ced001c76 Mon Sep 17 00:00:00 2001 From: whitequark Date: Fri, 29 May 2020 17:45:09 +0000 Subject: [PATCH] setup: exclude tests. The inclusion of tests in the package was completely unintentional and a result of my lack of knowledge of setuptools. If you are using nmigen.test.utils, please copy the parts you need to your own code because the nmigen.test code can and will change without notice. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index dd524f0..ee53017 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( "pyvcd~=0.2.0", # for nmigen.pysim "Jinja2~=2.11", # for nmigen.build ], - packages=find_packages(), + packages=find_packages(exclude=["*.test*"]), entry_points={ "console_scripts": [ "nmigen-rpc = nmigen.rpc:main", -- 2.30.2