Skip to content

Commit 0b49f05

Browse files
Dylan Fiedlerclaude
andcommitted
refactor: move turbo_sdk from src/ to root
- Move turbo_sdk package from src/turbo_sdk to turbo_sdk at root - Update pyproject.toml and setup.py for new package location 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent d34eb8a commit 0b49f05

17 files changed

Lines changed: 2 additions & 3 deletions

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Repository = "https://github.com/ardriveapp/turbo-python-sdk"
5151
Documentation = "https://github.com/ardriveapp/turbo-python-sdk#readme"
5252

5353
[tool.setuptools.packages.find]
54-
where = ["src"]
54+
where = ["."]
5555

5656
[tool.black]
5757
line-length = 100

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@
33
from setuptools import setup, find_packages
44

55
setup(
6-
package_dir={"": "src"},
7-
packages=find_packages(where="src", exclude=["tests", "tests.*"]),
6+
packages=find_packages(exclude=["tests", "tests.*"]),
87
)

0 commit comments

Comments
 (0)