https://github.com/pythoncharmers/pythoncharmers-meta
Python Charmers meta-package
https://github.com/pythoncharmers/pythoncharmers-meta
Last synced: over 1 year ago
JSON representation
Python Charmers meta-package
- Host: GitHub
- URL: https://github.com/pythoncharmers/pythoncharmers-meta
- Owner: PythonCharmers
- License: bsd-3-clause
- Created: 2024-09-05T11:22:02.000Z (almost 2 years ago)
- Default Branch: master
- Last Pushed: 2025-02-27T06:50:32.000Z (over 1 year ago)
- Last Synced: 2025-02-27T09:22:25.859Z (over 1 year ago)
- Language: Python
- Size: 2.13 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Charmers meta-package
This is a meta-package for [Python Charmers](https://pythoncharmers.com)
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](https://docs.astral.sh/uv/), this will be much faster:
```
uv pip install pythoncharmers-meta
```
## Optional packages (extras)
The following sets of optional packages ("extras") are available:
- `gis`
- `ml`
- `dl`
- `scieng`
- `net`
- `web`
You can add them like this:
```
uv pip install "pythoncharmers-meta[gis, ml]" --reinstall
```
## Cutting a new release
```
uv build
uvx twine upload dist/*
```