npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

serverless-pyproject-plugin

v1.1.0

Published

A small Serverless plugin for pyproject.toml compatibility

Readme

Serverless PyProject Plugin

Build Status Published Version Published Downloads

This repository contains a small Serverless plugin to enable development using pyproject.toml without Poetry.

This is done by exporting the dependencies listing from pyproject.toml into a typical requirements.txt file during a Serverless build. This file can then be picked up by other tools such as serverless-python-requirements in order to generate a Python bundle.

Installation

This plugin is available via npm, so it can be installed as usual:

$ npm i --save-dev serverless-pyproject-plugin

There's no need to include it in your production bundle, so make sure it's saved inside the development dependencies. Once installed, make sure to add it to your Serverless plugins list:

plugins:
  - serverless-pyproject-plugin

The location within the plugin list shouldn't matter, as it's not reacting to any specific Serverless events. You will also likely want to do the same with serverless-python-requirements.

Configuration

The default behaviour of this plugin is to export dependencies from your pyproject.toml directly into requirements.txt, with no configuration required. As an example consider the following pyproject.toml:

[project]
name = "my_project"
version = "0.0.0"
dependencies = [
  "fastapi[standard]~=0.115",
  "pydantic~=2.10.1",
  "pydantic-settings~=2.6"
]

[project.optional-dependencies]
lambda = [
  "mangum~=0.19"
]

This will produce the following entries inside requirements.txt:

fastapi[standard]~=0.115,
pydantic~=2.10.1,
pydantic-settings~=2.6

By default, no optional dependencies are included (as you can see via the exclusion of mangum above). You can opt into different optional dependencies via the configuration flag extras in your serverless.yml:

custom:
  pyproject:
    extras:
      - lambda

This will then include the groups you requested inside the exported file.

fastapi[standard]~=0.115,
pydantic~=2.10.1,
pydantic-settings~=2.6
mangum~=0.19

Compatibility

This plugin has been tested against the Serverless v4 release, but will likely work with many Serverless versions as it's unreliant on almost everything inside the framework itself. If you have any issues, please do file an issue!