develop #22

Merged
Fabel merged 3 commits from develop into main 2025-04-26 11:47:35 +00:00
1 changed files with 24 additions and 17 deletions
Showing only changes of commit a70fc339d2 - Show all commits

View File

@ -71,35 +71,42 @@ By default, `prodir` ignores files and folders that start with `_` or `.`. Howev
#### Example Input #### Example Input
```plaintext ```plaintext
project/ my_project/
├── src/ ├── src/
│ ├── __init__.py │ ├── __init__.py # init file
│ ├── main.py │ ├── main.py
│ ├── module1.py │ └── utils.py
│ └── module2.py ├── tests/
├── config/ │ ├── __init__.py
│ └── config.yaml │ ├── test_main.py
│ └── test_utils.py
├── data/
│ └── sample_data.csv
├── docs/
│ └── README.md
├── .gitignore ├── .gitignore
├── pyproject.toml ├── requirements.txt
├── setup.py └── setup.py
├── LICENSE
└── README.m
``` ```
#### Example Output #### Example Output
```plaintext ```plaintext
LICENSE Analyzing directory: .\my_project\
README.m data/
config/ └── sample_data.csv
└── config.yaml docs/
pyproject.toml └── README.md
requirements.txt
setup.py setup.py
src/ src/
├── __init__.py ├── __init__.py
├── main.py ├── main.py
├── module1.py └── utils.py
└── module2.py tests/
├── __init__.py
├── test_main.py
└── test_utils.py
``` ```
#### Commands #### Commands