8 lines
315 B
Plaintext
8 lines
315 B
Plaintext
---
|
|
description: General Python project rules for all Python files in the project. Enforces specific Python versions and class usage.
|
|
globs: /**/*.*.py
|
|
---
|
|
- Always use UV when installing dependencies.
|
|
- Always use Python 3.12.
|
|
- Always use classes instead of functions.
|
|
- Docstrings should use a NumPy/SciPy style. |