feat/hotfix #21
41
README.md
41
README.md
|
@ -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
|
||||||
|
|
|
@ -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 = []
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -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"),
|
||||||
|
|
Loading…
Reference in New Issue