-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
43 lines (43 loc) Β· 1.1 KB
/
Copy pathenvironment.yml
File metadata and controls
43 lines (43 loc) Β· 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: cozy-forge
channels:
- conda-forge
- defaults
dependencies:
# Core Python (version set by CI matrix or local conda env)
- python
# Networking and security
- cryptography
- openssl
- requests
# Database tools
- postgresql
# System utilities
- python-dotenv
# Development and testing - Core
- pre-commit
- pytest
- pytest-cov
# Python code quality tools
- ruff # Modern linter and formatter (replaces black, isort, many flake8 plugins)
- flake8 # Additional linting
- mypy # Static type checking
# Security scanning
- checkov # Terraform/IaC security scanner
- safety # Python dependency vulnerability scanner
# Documentation tools
- mdformat # Markdown formatter
- mdformat-gfm # GitHub Flavored Markdown support
- yamllint
# Pip packages for additional functionality
- pip
- pip:
# Test utilities
- pytest-mock
# Additional type stubs for mypy
- types-requests
- types-python-dateutil
# Flake8 plugins (not available via conda)
- flake8-bugbear
- flake8-comprehensions
- flake8-pyproject
- dlint