forked from jlchen5/fmd5sum
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.yml
More file actions
19 lines (19 loc) · 837 Bytes
/
environment.yml
File metadata and controls
19 lines (19 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
name: fmd5sum-env
channels:
- conda-forge
- defaults
dependencies:
- python=3.10 # Primary Python version
- pip # For package installation
- pre-commit # For automatic code formatting
- coverage # For test coverage reporting
- pytest # Testing framework
- pytest-cov # Test coverage plugin
- pylint # Code quality checker
- black # Code formatter
- tqdm # Optional: for progress bars in future enhancements
- click # Optional: for CLI enhancements
- pip: # Add any PyPI-only dependencies
- build # For building packages
- twine # For PyPI uploads
- -e . # Install current package in editable mode