Skip to content

aboutcode-org/skeleton

Folders and files

NameName
Last commit message
Last commit date
Feb 14, 2025
Aug 20, 2024
Aug 20, 2024
Jan 14, 2021
Aug 20, 2024
May 11, 2021
Jan 15, 2023
Jul 10, 2023
Sep 23, 2020
May 11, 2021
May 27, 2022
Jan 14, 2021
Aug 20, 2024
Aug 20, 2024
Jul 18, 2023
Jan 6, 2021
Feb 14, 2025
Aug 20, 2024
Aug 20, 2024
Jan 12, 2022
Sep 3, 2021
Sep 3, 2021
Aug 20, 2024
Jan 14, 2021

Repository files navigation

A Simple Python Project Skeleton

This repo attempts to standardize the structure of the Python-based project's repositories using modern Python packaging and configuration techniques. Using this blog post as inspiration, this repository serves as the base for all new Python projects and is mergeable in existing repositories as well.

Usage

A brand new project

git init my-new-repo
cd my-new-repo
git pull git@github.com:nexB/skeleton

# Create the new repo on GitHub, then update your remote
git remote set-url origin git@github.com:nexB/your-new-repo.git

From here, you can make the appropriate changes to the files for your specific project.

Update an existing project

cd my-existing-project
git remote add skeleton git@github.com:nexB/skeleton
git fetch skeleton
git merge skeleton/main --allow-unrelated-histories

This is also the workflow to use when updating the skeleton files in any given repository.

More usage instructions can be found in docs/skeleton-usage.rst.

Release Notes

  • 2023-07-18:
    • Add macOS-13 job in azure-pipelines.yml
  • 2022-03-04:
    • Synchronize configure and configure.bat scripts for sanity
    • Update CI operating system support with latest Azure OS images
    • Streamline utility scripts in etc/scripts/ to create, fetch and manage third-party dependencies There are now fewer scripts. See etc/scripts/README.rst for details
  • 2021-09-03:
    • configure now requires pinned dependencies via the use of requirements.txt and requirements-dev.txt
    • configure can now accept multiple options at once
    • Add utility scripts from scancode-toolkit/etc/release/ for use in generating project files
    • Rename virtual environment directory from tmp to venv
    • Update README.rst with instructions for generating requirements.txt and requirements-dev.txt, as well as collecting dependencies as wheels and generating ABOUT files for them.
  • 2021-05-11:
    • Adopt new configure scripts from ScanCode TK that allows correct configuration of which Python version is used.