Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.08 KB

README.md

File metadata and controls

49 lines (35 loc) · 1.08 KB

Python Charmers meta-package

This is a meta-package for Python Charmers training participants. This depends on many packages used in Python Charmers training courses.

This package is intended to be used from a Python Charmers Hub in the cloud like https://cpuhub.pythoncharmers.com.

Installation

Install it like this:

pip install pythoncharmers-meta

or, if you have uv, this will be much faster:

uv pip install pythoncharmers-meta

Optional packages (extras)

The following sets of optional packages ("extras") are available:

  • analytics: data analytics
  • db: packages for interfacing with various databases
  • dl: deep learning
  • gis: geospatial analysis
  • ml: "classical" machine learning
  • net: network engineering, concurrency
  • scieng: scientific and engineering computing
  • testing: testing, linting, doc generation
  • web: web dev

You can add them like this:

uv pip install "pythoncharmers-meta[gis, ml]" --reinstall

Cutting a new release

uv build
uvx twine upload dist/*