Compare commits
No commits in common. "7fd68236f5832193b2a6fceb629fdad9d89d4b88" and "883022e6beebb6537a3c41947b4dc993ff344137" have entirely different histories.
7fd68236f5
...
883022e6be
41
README.md
41
README.md
|
@ -71,42 +71,35 @@ By default, `prodir` ignores files and folders that start with `_` or `.`. Howev
|
|||
#### Example Input
|
||||
|
||||
```plaintext
|
||||
my_project/
|
||||
project/
|
||||
├── src/
|
||||
│ ├── __init__.py # init file
|
||||
│ ├── main.py
|
||||
│ └── utils.py
|
||||
├── tests/
|
||||
│ ├── __init__.py
|
||||
│ ├── test_main.py
|
||||
│ └── test_utils.py
|
||||
├── data/
|
||||
│ └── sample_data.csv
|
||||
├── docs/
|
||||
│ └── README.md
|
||||
│ ├── main.py
|
||||
│ ├── module1.py
|
||||
│ └── module2.py
|
||||
├── config/
|
||||
│ └── config.yaml
|
||||
├── .gitignore
|
||||
├── requirements.txt
|
||||
└── setup.py
|
||||
├── pyproject.toml
|
||||
├── setup.py
|
||||
├── LICENSE
|
||||
└── README.m
|
||||
```
|
||||
|
||||
#### Example Output
|
||||
|
||||
```plaintext
|
||||
Analyzing directory: .\my_project\
|
||||
data/
|
||||
└── sample_data.csv
|
||||
docs/
|
||||
└── README.md
|
||||
requirements.txt
|
||||
LICENSE
|
||||
README.m
|
||||
config/
|
||||
└── config.yaml
|
||||
pyproject.toml
|
||||
setup.py
|
||||
src/
|
||||
├── __init__.py
|
||||
├── main.py
|
||||
└── utils.py
|
||||
tests/
|
||||
├── __init__.py
|
||||
├── test_main.py
|
||||
└── test_utils.py
|
||||
├── module1.py
|
||||
└── module2.py
|
||||
```
|
||||
|
||||
#### Commands
|
||||
|
|
|
@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|||
|
||||
[project]
|
||||
name = "prodir"
|
||||
version = "1.0.2"
|
||||
version = "1.0.1"
|
||||
description = "A module for analyzing and creating directory structures"
|
||||
scripts = {prodir = "prodir.__main__:main"}
|
||||
dependencies = []
|
||||
|
|
Loading…
Reference in New Issue