-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
67 lines (54 loc) · 1.34 KB
/
environment.yml
File metadata and controls
67 lines (54 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# conda env create -f environment.yml
# conda env update --file environment.yml --prune
name: charon
channels:
- conda-forge
- defaults
dependencies:
# Core Python
- python=3.11
# Networking and security
- cryptography
- openssl
- requests
# Database tools
- postgresql
# System utilities
- python-dotenv
# Development and testing - Core
- pre-commit
- pytest
- pytest-cov
- pytest-mock
- cmark-gfm
# 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
# Terraform and infrastructure
- terraform
# YAML tools (used by pre-commit)
- yamllint
# Pip packages for additional functionality
- pip
- pip:
# Test utilities
- pytest-mock
# API clients
- python-redmine
- kubernetes
- CloudFlare
# Additional type stubs for mypy
- types-requests
- types-python-dateutil
# Flake8 plugins (not available via conda)
- flake8-bugbear
- flake8-comprehensions
- flake8-pyproject
- dlint