Contributing to Proofly
Thank you for your interest in contributing to Proofly! This document provides guidelines and instructions for contributing to the project.
Development Setup
- Fork and clone the repository:
git clone https://github.com/moroii69/proofly.git
cd proofly-lib
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install development dependencies:
pip install -r requirements.txt
Code Style
We follow PEP 8 guidelines with these specific requirements:
- Line length maximum: 88 characters
- Use type hints for all function parameters
- Include docstrings for all classes and functions
- Use f-strings for string formatting
Example of properly formatted code:
def analyze_health_metrics(
metrics: HealthMetrics,
threshold: float = 0.5
) -> AnalysisResult:
"""
Analyze health metrics and return results.
Args:
metrics: Health metrics to analyze
threshold: Analysis threshold value
Returns:
AnalysisResult containing analysis outcome
"""
return AnalysisResult(
score=calculate_score(metrics),
confidence=calculate_confidence(metrics, threshold)
)
Testing
⚛️ Deprecation Notice
This testing framework has been discontinued as of version 1.2.4.
Legacy Testing Documentation
Note: The following information is preserved for historical purposes and projects using versions prior to 1.2.4.
We use pytest for testing. All new code should include tests:
# tests/test_analyzer.py
def test_health_analyzer():
metrics = DiabetesMetrics(
blood_glucose=120,
hba1c=6.5,
blood_pressure=130
)
analyzer = HealthAnalyzer()
result = analyzer.analyze_metrics("diabetes", metrics)
assert result.health_score >= 0
assert result.health_score <= 100
assert isinstance(result.recommendations, list)
To run tests:
pytest
pytest --cov=proofly tests/ # For coverage
Pull Request Process
- Create a new branch for your feature:
git checkout -b feature/your-feature-name
- Make your changes and commit them:
git add .
git commit -m "feat: add new feature"
We follow conventional commits:
feat:
for new featuresfix:
for bug fixesdocs:
for documentationtest:
for adding testsrefactor:
for code refactoring
- Push your changes:
git push origin feature/your-feature-name
- Open a Pull Request with:
- Clear description of changes
- Link to related issue
- Screenshots/examples if relevant
- Test results
Documentation
When adding new features, please update:
- API documentation
- Usage examples
- Docstrings
- README.md if necessary
Example of good documentation:
class HealthAnalyzer:
"""
Main class for analyzing health metrics.
Attributes:
config (Dict): Configuration parameters
models (Dict): Loaded prediction models
Example:
analyzer = HealthAnalyzer()
result = analyzer.analyze_metrics(metrics)
"""
Code Review Process
All submissions require review. We expect:
- No failing tests
- Code coverage ≥90%
- Proper documentation
- Clean commit history
Development Workflow
- Check existing issues/create new issue
- Discuss approach in issue
- Fork repository
- Create feature branch
- Write code and tests
- Submit PR
- Address review comments
- Merge after approval
Environment Setup Tips
Recommended VS Code settings:
{
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.formatting.provider": "black",
"editor.formatOnSave": true,
"editor.rulers": [88],
"python.testing.pytestEnabled": true
}
Release Process
- Update version in
setup.py
- Update CHANGELOG.md
- Create release branch
- Run full test suite
- Create GitHub release
- Publish to PyPI
Getting Help
- GitHub Issues: Bug reports and feature requests
- Discussions: Questions and ideas
- Email: support@proofly.xyz
Code of Conduct
We follow the Contributor Covenant (opens in a new tab). Key points:
- Be respectful and inclusive
- No harassment or discrimination
- Focus on constructive feedback
- Report violations to maintainers
Recognition
Contributors will be added to:
- CONTRIBUTORS.md file
- GitHub contributors page
- Release notes for significant contributions
Thank you for contributing to Proofly!