develop #22
41
README.md
41
README.md
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue