Compare commits
No commits in common. "7fd68236f5832193b2a6fceb629fdad9d89d4b88" and "883022e6beebb6537a3c41947b4dc993ff344137" have entirely different histories.
7fd68236f5
...
883022e6be
41
README.md
41
README.md
|
@ -71,42 +71,35 @@ By default, `prodir` ignores files and folders that start with `_` or `.`. Howev
|
||||||
#### Example Input
|
#### Example Input
|
||||||
|
|
||||||
```plaintext
|
```plaintext
|
||||||
my_project/
|
project/
|
||||||
├── src/
|
├── src/
|
||||||
│ ├── __init__.py # init file
|
|
||||||
│ ├── main.py
|
|
||||||
│ └── utils.py
|
|
||||||
├── tests/
|
|
||||||
│ ├── __init__.py
|
│ ├── __init__.py
|
||||||
│ ├── test_main.py
|
│ ├── main.py
|
||||||
│ └── test_utils.py
|
│ ├── module1.py
|
||||||
├── data/
|
│ └── module2.py
|
||||||
│ └── sample_data.csv
|
├── config/
|
||||||
├── docs/
|
│ └── config.yaml
|
||||||
│ └── README.md
|
|
||||||
├── .gitignore
|
├── .gitignore
|
||||||
├── requirements.txt
|
├── pyproject.toml
|
||||||
└── setup.py
|
├── setup.py
|
||||||
|
├── LICENSE
|
||||||
|
└── README.m
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Example Output
|
#### Example Output
|
||||||
|
|
||||||
```plaintext
|
```plaintext
|
||||||
Analyzing directory: .\my_project\
|
LICENSE
|
||||||
data/
|
README.m
|
||||||
└── sample_data.csv
|
config/
|
||||||
docs/
|
└── config.yaml
|
||||||
└── README.md
|
pyproject.toml
|
||||||
requirements.txt
|
|
||||||
setup.py
|
setup.py
|
||||||
src/
|
src/
|
||||||
├── __init__.py
|
├── __init__.py
|
||||||
├── main.py
|
├── main.py
|
||||||
└── utils.py
|
├── module1.py
|
||||||
tests/
|
└── module2.py
|
||||||
├── __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.2"
|
version = "1.0.1"
|
||||||
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.2',
|
version='1.0.1',
|
||||||
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