Merge branch 'main' of https://github.com/asq-sheriff/modern-python-d… #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Create source directory structure | ||
| mkdir -p src/project_name | ||
| touch src/__init__.py | ||
| touch src/project_name/__init__.py | ||
| touch src/project_name/main.py | ||
| # Create tests directory | ||
| mkdir -p tests | ||
| touch tests/__init__.py | ||
| touch tests/test_example.py | ||
| # Create documentation directory | ||
| mkdir -p docs | ||
| touch docs/README.md | ||
| # Create other necessary files | ||
| touch README.md | ||
| touch LICENSE | ||
| touch CHANGELOG.md | ||