Skip to content

Commit 5a42127

Browse files
committed
Make directory hierarchy more clear
1 parent 5cb1a66 commit 5a42127

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

source/tutorials/packaging-projects.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ To create this project locally, create the following file structure:
1717

1818
.. code-block:: text
1919
20-
packaging_tutorial/
21-
example_pkg/
22-
__init__.py
20+
packaging_tutorial
21+
└── example_pkg
22+
   └── __init__.py
2323
2424
2525
Once you create this structure, you'll want to run all of the commands in this
@@ -41,13 +41,13 @@ for distribution. Create the new files listed below and place them in the projec
4141

4242
.. code-block:: text
4343
44-
packaging_tutorial/
45-
example_pkg/
46-
__init__.py
47-
tests/
48-
setup.py
49-
LICENSE
50-
README.md
44+
packaging_tutorial
45+
├── LICENSE
46+
├── README.md
47+
├── example_pkg
48+
│   └── __init__.py
49+
├── setup.py
50+
└── tests
5151
5252
5353
Creating a test folder

0 commit comments

Comments
 (0)