Compare commits

...

3 Commits

Author SHA1 Message Date
Falko Victor Habel 390d042e05 Merge pull request 'feat/hotfix' (#21) from feat/hotfix into develop
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 31s Details
Reviewed-on: #21
2025-04-26 11:47:22 +00:00
Falko Victor Habel d4b6eefa92 updated software version
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 38s Details
2025-04-26 13:46:22 +02:00
Falko Victor Habel a70fc339d2 updated output and input in readme
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 38s Details
2025-04-25 22:10:48 +02:00
3 changed files with 26 additions and 19 deletions

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

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "prodir"
version = "1.0.1"
version = "1.0.2"
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.1',
version='1.0.2',
description='A module for analyzing directory structures',
ext_modules=[tree_structurer_module],
packages=find_packages(where="src"),