From 60b81e7142dc8df12162d85bcf5f70749b4ccc60 Mon Sep 17 00:00:00 2001 From: atse Date: Fri, 21 Jun 2024 17:08:36 +0800 Subject: [PATCH] Move examples into folder --- pytec/{ => examples}/aioexample.py | 0 pytec/{ => examples}/example.py | 0 pytec/pyproject.toml | 2 +- pytec/setup.py | 2 +- 4 files changed, 2 insertions(+), 2 deletions(-) rename pytec/{ => examples}/aioexample.py (100%) rename pytec/{ => examples}/example.py (100%) diff --git a/pytec/aioexample.py b/pytec/examples/aioexample.py similarity index 100% rename from pytec/aioexample.py rename to pytec/examples/aioexample.py diff --git a/pytec/example.py b/pytec/examples/example.py similarity index 100% rename from pytec/example.py rename to pytec/examples/example.py diff --git a/pytec/pyproject.toml b/pytec/pyproject.toml index 3eeb969..5faabf5 100644 --- a/pytec/pyproject.toml +++ b/pytec/pyproject.toml @@ -16,4 +16,4 @@ tec_qt = "tec_qt:main" [tool.setuptools] packages.find = {} # Use setuptools custom discovery, package directory structure isn't standard package-data = {"*" = ["*.ico", "*.ui", "*.json"]} -py-modules = ["aioexample", "autotune", "example", "plot", "tec_qt"] +py-modules = ["autotune", "plot", "tec_qt"] diff --git a/pytec/setup.py b/pytec/setup.py index 0229d0d..9cb56e3 100644 --- a/pytec/setup.py +++ b/pytec/setup.py @@ -14,6 +14,6 @@ setup( "tec_qt = tec_qt:main", ] }, - py_modules=['aioexample', 'autotune', 'example', 'plot', 'tec_qt'], + py_modules=['autotune', 'plot', 'tec_qt'], package_data={"*": ["*.ico", "*.ui", "*.json"]}, )