From b9bab3c59bcabacf0d00e7509fed6e83a8b7c3f5 Mon Sep 17 00:00:00 2001 From: Yasset Perez-Riverol Date: Fri, 24 May 2024 10:40:44 +0100 Subject: [PATCH] first command test --- pyquantms/__init__.py | 0 setup.py | 4 ++-- tests/test_future.py | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 pyquantms/__init__.py diff --git a/pyquantms/__init__.py b/pyquantms/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index 0006625..809e711 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -from setuptools import setup +from setuptools import setup, find_packages VERSION = "0.0.1" @@ -47,7 +47,7 @@ project_urls=PROJECT_URLS, keywords=KEYWORDS, classifiers=CLASSIFIERS, - packages=["pyquantms"], + packages=find_packages(), include_package_data=True, entry_points={ "console_scripts": [ diff --git a/tests/test_future.py b/tests/test_future.py index d40506e..94de4e6 100644 --- a/tests/test_future.py +++ b/tests/test_future.py @@ -10,7 +10,6 @@ def test_future_test(): # test for the create_diann_cfg command in cli def test_create_diann_cfg(): runner = CliRunner() - result = runner.invoke(cli, - ['create_diann_cfg','--help']) + result = runner.invoke(cli,['create_diann_cfg','--help']) assert result.exit_code == 0 \ No newline at end of file