From 020a082f87571ec1ddafc585dc27b2c2283c3ca4 Mon Sep 17 00:00:00 2001 From: Bonnie Date: Thu, 27 Nov 2025 15:02:59 +0800 Subject: [PATCH] chore: add development dependencies to setup.py --- setup.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/setup.py b/setup.py index c3190dba..1ac48a60 100644 --- a/setup.py +++ b/setup.py @@ -9,6 +9,18 @@ packages=find_packages(where="src", exclude=["tests"]), package_dir={"": "src"}, install_requires=["web3>=7.0.0", "pytest", "python-dotenv", "base58"], + extras_require={ + "dev": [ + "pytest", + "pytest-cov", + "black", + "isort", + "ruff", + "pre-commit", + "coverage", + "pytest-html", + ], + }, include_package_data=True, # Ensure package data is included package_data={"story_protocol_python_sdk": ["py.typed"]}, url="https://github.com/storyprotocol/python-sdk",