summaryrefslogtreecommitdiff
path: root/pyproject.toml
diff options
context:
space:
mode:
authorSimeon Simeonov2023-01-08 23:39:45 +0100
committerSimeon Simeonov2023-01-08 23:39:45 +0100
commite9f45a50dd3f92a4082bec6dc33c4aa0f919138a (patch)
treedcfc89aa5aacaaf97072da9d0d0517c3b367176b /pyproject.toml
parentb8fa40b48feb8709d27b1c50f1ea6be2ce081692 (diff)
Include the tests in the sdist packagev1.2.1
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml7
1 files changed, 5 insertions, 2 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 21a01e2..272c00f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -8,7 +8,10 @@ build-backend = "setuptools.build_meta"
8 8
9 9
10[tool.pytest.ini_options] 10[tool.pytest.ini_options]
11minversion = "6.0" 11minversion = "7.0"
12testpaths = [ 12testpaths = [
13 "tests" 13 "test"
14]
15pythonpath = [
16 "src"
14] 17]