Compare commits

..

No commits in common. "390d042e05f72fbb3c2220006927ded1f58adf90" and "887f9a38e1f6f467d3d274f52373e95cfe80c83e" have entirely different histories.

3 changed files with 19 additions and 26 deletions

View File

@ -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

View File

@ -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 = []

View File

@ -20,7 +20,7 @@ tree_structurer_module = Extension(
setup(
name='prodir',
version='1.0.2',
version='1.0.1',
description='A module for analyzing directory structures',
ext_modules=[tree_structurer_module],
packages=find_packages(where="src"),