From 8358d08175ad91a0ef9215d1d2f5ab2d51c8b232 Mon Sep 17 00:00:00 2001 From: Veronique Legrand <vlegrand@pasteur.fr> Date: Wed, 13 Jul 2022 18:06:54 +0200 Subject: [PATCH] work in progress --- setup.cfg | 11 +++++++---- setup.py | 4 ++-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/setup.cfg b/setup.cfg index 67935c0..416be7c 100644 --- a/setup.cfg +++ b/setup.cfg @@ -18,9 +18,9 @@ platforms=any [options] package_dir = - = . + ptv = . = _modules - = test-data + [options.entry_points] console_script = @@ -29,7 +29,10 @@ console_script = python_requires = >=3.6 [options.packages.find] -where = . +#where = . +exclude = + .*non-regression-tests.* + .*non-regression-tests install_requires = backports @@ -59,7 +62,7 @@ install_requires = tk [options.data_files]= - test_data = test-data/COS-3.500.fastq +test_data = test-data/COS-3.500.fastq test-data/COS-3.fasta test-data/COS-3.fastq test-data/COS-5.fasta diff --git a/setup.py b/setup.py index 0407ad7..ea7957d 100644 --- a/setup.py +++ b/setup.py @@ -6,9 +6,9 @@ https://github.com/pypa/sampleproject # Always prefer setuptools over distutils from setuptools import setup, find_packages -import pathlib +#import pathlib -here = pathlib.Path(__file__).parent.resolve() +#here = pathlib.Path(__file__).parent.resolve() # Get the long description from the README file # long_description = (here / "README.md").read_text(encoding="utf-8") -- GitLab