Compare commits

..

4 Commits

Author SHA1 Message Date
Falko Victor Habel 7fd68236f5 Merge pull request 'develop' (#22) from develop into main
Run VectorLoader Script / Explore-Gitea-Actions (push) Successful in 19s Details
Gitea Actions For prodir / Explore-Gitea-Actions (push) Successful in 31s Details
Reviewed-on: #22
2025-04-26 11:47:34 +00:00
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 #### 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

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "prodir" name = "prodir"
version = "1.0.1" version = "1.0.2"
description = "A module for analyzing and creating directory structures" description = "A module for analyzing and creating directory structures"
scripts = {prodir = "prodir.__main__:main"} scripts = {prodir = "prodir.__main__:main"}
dependencies = [] dependencies = []

View File

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