File tree Expand file tree Collapse file tree 1 file changed +27
-0
lines changed
Expand file tree Collapse file tree 1 file changed +27
-0
lines changed Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ Good job! You have now generated the skeleton for your package:
8080
8181``` text
8282my-python-project/
83+ ├── .bumpversion.cfg
8384├── CHANGELOG.md
8485├── CITATION.cff
8586├── CODE_OF_CONDUCT.md
@@ -92,17 +93,43 @@ my-python-project/
9293│ ├── _static
9394│ │ └── theme_overrides.css
9495│ └── _templates
96+ │ └── .gitignore
97+ ├── .editorconfig
98+ ├── .githooks
99+ │ └── pre-commit
100+ ├── .github
101+ │ ├── next_steps
102+ │ │ ├── 01_sonarcloud_integration.md
103+ │ │ ├── 02_zenodo_integration.md
104+ │ │ ├── 03_readthedocs.md
105+ │ │ ├── 04_citation.md
106+ │ │ └── 05_linting.md
107+ │ └── workflows
108+ │ ├── build.yml
109+ │ ├── cffconvert.yml
110+ │ ├── lint.yml
111+ │ ├── markdown-link-check.yml
112+ │ ├── next_steps.yml
113+ │ └── sonarcloud.yml
114+ ├── .gitignore
95115├── LICENSE
96116├── MANIFEST.in
117+ ├── .mlc-config.json
97118├── my_python_package
98119│ ├── __init__.py
99120│ ├── my_module.py
100121│ └── __version__.py
122+ ├── next_steps.md
101123├── NOTICE
102124├── project_setup.md
125+ ├── .prospector.yml
126+ ├── .pylintrc
127+ ├── pyproject.toml
128+ ├── README.dev.md
103129├── README.md
104130├── setup.cfg
105131├── setup.py
132+ ├── sonar-project.properties
106133└── tests
107134 ├── __init__.py
108135 └── test_my_module.py
You can’t perform that action at this time.
0 commit comments