diff options
author | David Brownman <109395161+xavdid-stripe@users.noreply.github.com> | 2025-10-02 15:12:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-10-02 15:12:31 -0700 |
commit | d50cabbb27fb70945d0ac8a7d2949eeb7fa9ce59 (patch) | |
tree | 9e9a3590f88c0f853249ed6b0695d031870cd11a | |
parent | a71c1fd308cf19baf7ddc49a5246e8b67b452a60 (diff) |
Re-add `tests` to our `sdist` (#1627)
* include tests in sdist * include deps too
-rw-r--r-- | pyproject.toml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index 9bccb0a2..99f55cb8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,9 @@ documentation = "https://stripe.com/docs/api/?lang=python" requires = ["flit_core >=3.11, <4"] build-backend = "flit_core.buildapi" +[tool.flit.sdist] +include = ["tests/", "justfile", "examples/", "CHANGELOG.md", "deps/"] + [tool.ruff] # same as our black config line-length = 79 |