File tree Expand file tree Collapse file tree 1 file changed +21
-23
lines changed
Expand file tree Collapse file tree 1 file changed +21
-23
lines changed Original file line number Diff line number Diff line change @@ -89,19 +89,6 @@ Good job! You have now generated the skeleton for your package:
8989
9090``` text
9191my-python-project/
92- ├── CHANGELOG.md
93- ├── CITATION.cff
94- ├── CODE_OF_CONDUCT.md
95- ├── CONTRIBUTING.md
96- ├── docs
97- │ ├── conf.py
98- │ ├── index.rst
99- │ ├── make.bat
100- │ ├── Makefile
101- │ ├── _static
102- │ │ └── theme_overrides.css
103- │ └── _templates
104- │ └── .gitignore
10592├── .editorconfig
10693├── .githooks
10794│ └── pre-commit
@@ -115,26 +102,37 @@ my-python-project/
115102│ └── workflows
116103│ ├── build.yml
117104│ ├── cffconvert.yml
118- │ ├── lint .yml
105+ │ ├── documentation .yml
119106│ ├── markdown-link-check.yml
120107│ ├── next_steps.yml
121108│ └── sonarcloud.yml
122109├── .gitignore
110+ ├── .mlc-config.json
111+ ├── .readthedocs.yaml
112+ ├── CHANGELOG.md
113+ ├── CITATION.cff
114+ ├── CODE_OF_CONDUCT.md
115+ ├── CONTRIBUTING.md
123116├── LICENSE
124117├── MANIFEST.in
125- ├── .mlc-config.json
126- ├── my_python_package
127- │ ├── __init__.py
128- │ ├── my_module.py
129- │ └── __version__.py
130- ├── next_steps.md
131118├── NOTICE
132- ├── project_setup.md
133- ├── .pylintrc
134- ├── pyproject.toml
135119├── README.dev.md
136120├── README.md
121+ ├── docs
122+ │ ├── Makefile
123+ │ ├── _templates
124+ │ │ └── .gitignore
125+ │ ├── conf.py
126+ │ ├── index.rst
127+ │ └── make.bat
128+ ├── next_steps.md
129+ ├── project_setup.md
130+ ├── pyproject.toml
137131├── sonar-project.properties
132+ ├── src
133+ │ └── my_python_package
134+ │ ├── __init__.py
135+ │ └── my_module.py
138136└── tests
139137 ├── __init__.py
140138 └── test_my_module.py
You can’t perform that action at this time.
0 commit comments