✅ Task 1.1 - Project Foundation Setup: - Repository structure with Python packaging (setup.py, pyproject.toml) - Development dependencies and requirements - Contributing guidelines and MIT license - GitHub workflows for CI/CD (test.yml, release.yml) - Issue and PR templates for community contributions - Comprehensive project documentation ✅ Task 1.2 - Core Client Structure: - wikijs package with proper module organization - Core client class foundation in client.py - Exception hierarchy for error handling - Base model classes and page models - Type checking support (py.typed) - Utility modules and helper functions 📊 Progress: Phase 1 MVP Development now 40% complete 🎯 Next: Task 1.3 - Authentication System implementation 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
405 B
Plaintext
26 lines
405 B
Plaintext
# Development dependencies for Wiki.js Python SDK
|
|
-r requirements.txt
|
|
|
|
# Testing
|
|
pytest>=7.0.0
|
|
pytest-cov>=4.0.0
|
|
pytest-asyncio>=0.21.0
|
|
responses>=0.20.0
|
|
|
|
# Code quality
|
|
black>=22.0.0
|
|
isort>=5.10.0
|
|
flake8>=5.0.0
|
|
mypy>=0.991
|
|
bandit[toml]>=1.7.0
|
|
|
|
# Pre-commit hooks
|
|
pre-commit>=2.20.0
|
|
|
|
# Development tools
|
|
ipython>=8.0.0
|
|
twine>=4.0.0
|
|
build>=0.8.0
|
|
|
|
# Optional async support (for future phases)
|
|
aiohttp>=3.8.0 |