https://github.com/jayqi/python-tools-reference
https://github.com/jayqi/python-tools-reference
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jayqi/python-tools-reference
- Owner: jayqi
- Created: 2023-10-11T04:04:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T04:37:54.000Z (over 2 years ago)
- Last Synced: 2025-02-03T21:45:59.163Z (over 1 year ago)
- Language: Jinja
- Homepage: https://jayqi.github.io/python-tools-reference/
- Size: 57.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Developer Tools Reference
This repository builds the "Python Developer Tools Reference" static website at .
## Requirements
Requires Python 3.11.
Install dependencies with:
```bash
pip install -r requirements.txt
```
## Building the site
To build the site assets to the `site/` directory, run:
```bash
make build
```
## Locking requirements
To make the deployment reproducible, we pin dependencies in a lock file using [pip-tools](https://github.com/jazzband/pip-tools).
The abstract dependencies are specified in [requirements.in](./requirements.in).
To regenerate the lock file, run:
```bash
make lock
```