From a70fc339d251d217fb57d2cabc1917d34261da05 Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Fri, 25 Apr 2025 22:10:48 +0200 Subject: [PATCH 1/2] updated output and input in readme --- README.md | 41 ++++++++++++++++++++++++----------------- 1 file changed, 24 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 541ba6a..600afdc 100644 --- a/README.md +++ b/README.md @@ -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 -- 2.34.1 From d4b6eefa9202edbe862a325a9a797a4c86df46db Mon Sep 17 00:00:00 2001 From: Falko Habel Date: Sat, 26 Apr 2025 13:46:22 +0200 Subject: [PATCH 2/2] updated software version --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 830f41b..6b54f8c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [] diff --git a/setup.py b/setup.py index a06be42..56400ac 100644 --- a/setup.py +++ b/setup.py @@ -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"), -- 2.34.1