Loading...
SciTeX dotfiles

Ask anything about Scientific Research

Console
Ask anything about Scientific Research. I can take actions: stats, plots, literature, and your current work.
Files readonly-visitor/dotfiles
Viewer Viewer
No file selected Open a file from the Files tab to view it here
No commits yet
Not committed History
CONTRIBUTING.md • 1.9 KB

Contributing to SciTeX

Thank you for your interest in contributing to SciTeX. This guide covers the
process for reporting issues, suggesting features, and submitting code.

Contributor License Agreement

Before your first contribution can be merged, you must agree to the
SciTeX CLA. This is a one-time process. The CLA ensures that:

  • You retain copyright of your work.
  • The project can continue to offer dual licensing (free for researchers,
    commercial for enterprises).

See CLA.md for full details.

Reporting Issues

  • Search existing issues
    before opening a new one.
  • Include a minimal reproducible example when reporting bugs.
  • Specify your Python version, OS, and scitex version.

Development Setup

git clone [email protected]:ywatanabe1989/scitex-writer.git
cd scitex-writer
pip install -e ".[dev]"

Branch Workflow

  • main — stable releases only. Do not push directly.
  • develop — integration branch. PRs target here.
  • Feature branches — create from develop, name as feature/<description>.
git checkout develop
git checkout -b feature/my-change
# ... make changes ...
git push origin feature/my-change
# Open PR targeting develop

Code Style

  • Follow existing conventions in the codebase.
  • Use _ prefix for internal/private modules and functions.
  • Keep files under 512 lines.
  • Run tests before submitting:
pytest tests/ -x -q

Pull Request Process

  1. Ensure your branch is up to date with develop.
  2. Write tests for new functionality.
  3. Run the test suite and confirm all tests pass.
  4. Open a PR targeting develop with a clear description.
  5. The CLA bot will check your CLA status on your first PR.

License

By contributing, you agree to the terms of the CLA, which includes
licensing under AGPL-3.0 (see LICENSE) and the dual-licensing
provisions described therein.