[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "ourdigital-skills" version = "1.0.0" description = "OurDigital Custom Claude Skills Package" readme = "README.md" license = {text = "MIT"} authors = [ {name = "Andrew Yim", email = "andrew@ourdigital.org"} ] requires-python = ">=3.11" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "requests>=2.31.0", "python-dotenv>=1.0.0", "pyyaml>=6.0", "notion-client>=2.0.0", ] [project.optional-dependencies] dev = [ "pytest>=7.4.0", "black>=23.0.0", "ruff>=0.1.0", ] desktop = [ # Desktop-specific dependencies ] code = [ # Claude Code specific dependencies "anthropic>=0.18.0", ] [project.urls] Homepage = "https://www.ourdigital.org" Repository = "https://github.com/ourdigital/our-claude-skills" [tool.setuptools.packages.find] where = ["."] include = ["ourdigital_skills*"] [tool.black] line-length = 100 target-version = ['py311'] [tool.ruff] line-length = 100 select = ["E", "F", "I", "N", "W"] ignore = ["E501"] [tool.pytest.ini_options] testpaths = ["tests"] python_files = ["test_*.py"]