22 lines
756 B
Diff
22 lines
756 B
Diff
From aac8567d855243721820bbca31725cf67b672957 Mon Sep 17 00:00:00 2001
|
|
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
|
|
Date: Sat, 8 Jul 2023 17:52:17 -0400
|
|
Subject: [PATCH] Do not install tests in site-packages
|
|
|
|
---
|
|
setup.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/setup.py b/setup.py
|
|
index 82f78dd..98e2639 100644
|
|
--- a/setup.py
|
|
+++ b/setup.py
|
|
@@ -25,7 +25,7 @@
|
|
url='https://github.com/wtclarke/pymapvbvd',
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
- packages=setuptools.find_packages(),
|
|
+ packages=setuptools.find_packages(exclude=["tests*"]),
|
|
install_requires=install_requires,
|
|
extras_require={"tests": ['pytest', ]},
|
|
license_file='LICENSE',
|