feat/hotfix #21

Merged
Fabel merged 2 commits from feat/hotfix into develop 2025-04-26 11:47:23 +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
```plaintext
project/
my_project/
├── src/
│ ├── __init__.py
│ ├── __init__.py # init file
│ ├── main.py
│ ├── module1.py
│ └── module2.py
├── config/
│ └── config.yaml
│ └── utils.py
├── tests/
│ ├── __init__.py
│ ├── test_main.py
│ └── test_utils.py
├── data/
│ └── sample_data.csv
├── docs/
│ └── README.md
├── .gitignore
├── pyproject.toml
├── setup.py
├── LICENSE
└── README.m
├── requirements.txt
└── setup.py
```
#### Example Output
```plaintext
LICENSE
README.m
config/
└── config.yaml
pyproject.toml
Analyzing directory: .\my_project\
data/
└── sample_data.csv
docs/
└── README.md
requirements.txt
setup.py
src/
├── __init__.py
├── main.py
├── module1.py
└── module2.py
└── utils.py
tests/
├── __init__.py
├── test_main.py
└── test_utils.py
```
#### Commands