From 54c796ad3b943b868aa8b77ec9bd3591121f618e Mon Sep 17 00:00:00 2001 From: Ashwin Naren Date: Mon, 16 Oct 2023 20:54:01 -0700 Subject: [PATCH] updated pyproject.toml with auto detection --- .../custom_templates => custom_templates}/client.py.jinja | 0 .../endpoint_module.py.jinja | 0 .../package_init.py.jinja | 0 .../pyproject.toml.jinja | 0 pyproject.toml | 5 +++-- 5 files changed, 3 insertions(+), 2 deletions(-) rename {ftc_api/custom_templates => custom_templates}/client.py.jinja (100%) rename {ftc_api/custom_templates => custom_templates}/endpoint_module.py.jinja (100%) rename {ftc_api/custom_templates => custom_templates}/package_init.py.jinja (100%) rename {ftc_api/custom_templates => custom_templates}/pyproject.toml.jinja (100%) diff --git a/ftc_api/custom_templates/client.py.jinja b/custom_templates/client.py.jinja similarity index 100% rename from ftc_api/custom_templates/client.py.jinja rename to custom_templates/client.py.jinja diff --git a/ftc_api/custom_templates/endpoint_module.py.jinja b/custom_templates/endpoint_module.py.jinja similarity index 100% rename from ftc_api/custom_templates/endpoint_module.py.jinja rename to custom_templates/endpoint_module.py.jinja diff --git a/ftc_api/custom_templates/package_init.py.jinja b/custom_templates/package_init.py.jinja similarity index 100% rename from ftc_api/custom_templates/package_init.py.jinja rename to custom_templates/package_init.py.jinja diff --git a/ftc_api/custom_templates/pyproject.toml.jinja b/custom_templates/pyproject.toml.jinja similarity index 100% rename from ftc_api/custom_templates/pyproject.toml.jinja rename to custom_templates/pyproject.toml.jinja diff --git a/pyproject.toml b/pyproject.toml index 5304e7f..2618b16 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,8 +27,9 @@ dev = [ requires = ["setuptools"] build-backend = "setuptools.build_meta" -[tool.setuptools] -packages = ["ftc_api"] +[tool.setuptools.packages.find] +include = ["autotraders*"] +exclude = ["source*", "tests*", "venv*", "custom_templates*"] [project.urls] "Homepage" = "https://arihant2math.github.io/ftc-api/"