From 2b57e4383d780aa60565f601d0513a0d709163c4 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Thu, 3 Oct 2024 19:08:35 -0400 Subject: [PATCH] try ignoring tests dir --- pyproject.toml | 10 +++++++++- requirements/dev.txt | 3 ++- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4cbaa00..4e6557f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -49,6 +49,13 @@ Repository = "https://github.com/opentensor/btwallet" requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" +[tool.setuptools] +include-package-data = false + +[tool.setuptools.packages.find] +include = ["bittensor_wallet*", "src*"] +exclude = ["tests*"] + [project.optional-dependencies] dev = [ "pytest==7.2.0", @@ -69,5 +76,6 @@ dev = [ "ruff==0.4.7", "aioresponses==0.7.6", "factory-boy==3.3.0", - "maturin==1.7.0" + "maturin==1.7.0", + "py-bip39-bindings==0.1.11", ] \ No newline at end of file diff --git a/requirements/dev.txt b/requirements/dev.txt index cb791db..9fa4df0 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -16,4 +16,5 @@ httpx==0.27.0 ruff==0.4.7 aioresponses==0.7.6 factory-boy==3.3.0 -maturin==1.7.0 \ No newline at end of file +maturin==1.7.0 +py-bip39-bindings==0.1.11 \ No newline at end of file