An open API service indexing awesome lists of open source software.

https://github.com/jayqi/python-tools-reference


https://github.com/jayqi/python-tools-reference

Last synced: 3 months ago
JSON representation

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
```