Saving custom scripts in pyproject.toml (alias npm run)
See original GitHub issue- I have searched the issues of this repo and believe that this is not a duplicate.
- I have searched the documentation and believe that my question is not covered.
Feature Request
What do you think of having a scripts described in pyproject.toml
? Something like Procfile or script
section in packages.json
.
Here is a suggestion of configuration & usage:
[tools.poetry.proc]
build = "python manage.py collectstatic"
test = "pytest tests/unit/"
serve = "flask run"
$ poetry proc build
...
$ poetry proc serve
...
I think it would help project to not require Makefile nor tox to share commands and in the same time, ensure commands are properly executed in selected environment.
What do you think of this ?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:35
- Comments:9 (4 by maintainers)
Top Results From Across the Web
how to run a script using pyproject.toml settings and poetry?
I have an ftp sever runing on a remote host. I wrote a python script ( log_revision.py ) which save in a database...
Read more >Create Aliases For Long Scripts with npm-run-scripts
You can create aliases by adding them to the "scripts" object of your package.json file. The keys in the "script" object (left of...
Read more >The pyproject.toml file | Documentation | Poetry
When a script is added or updated, run poetry install to make them available in the project's virtualenv. extras #. Poetry supports extras...
Read more >Nixpkgs 22.11 manual - NixOS
Nix expressions describe how to build packages from source and are collected in the nixpkgs repository. Also included in the collection are Nix...
Read more >poethepoet - PyPI
Straight forward declaration of project tasks in your pyproject.toml (kind of like npm scripts). ✓ Task are run in poetry's virtualenv (or another...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
@bersace in the mean time I’d suggest checking out a project I’m working on that solves this problem in a slightly different way
Poe the Poet a task runner that works well with poetry.
It provides a flexible system for defining tasks in the pyroject.toml and executing them with a dedicated executable. Basic usage looks like:
Example configuration with different task types:
Example invocation:
And it supports zsh command completion!
EDIT: as of v0.12.0 it can also be used as a poetry plugin
Leaving my 2 cents here on the whole “scripts in pyproject.toml” conversation. I understand that this will probably not going to be implemented or accepted, but at least I added my 2 cents.
This is a clearly desired feature and has had well supported PRs demonstrating community support for it going back a few years.
While I do get the maintainers wanting this sort of functionality outside of poetry’s core codebase and scope, people are asking for it because they see poetry as Python’s primary DX/DI. The birds eye view of Python’s developer experience at the moment is that pyproject.toml will be the future of Python and poetry is in the position as the developer interface for pyproject.toml projects because it’s the most full featured tool that uses it that also builds.
Taking a step back, I personally just want a tool that I allows me to have a known procedure for all (modern) python projects.
Rust has this with cargo where the requisite to get up and running to contribute to a project is cloning the repo, having rust and cargo, making some changes, and running
cargo build
.Go has something similar (if not a little messy due to older codebases possibly not supporting modules). That said it’s simple in those languages since at most, they statically compile their artifacts and are done in terms of bundling their dependencies with their artifact.
Meanwhile in Python-land, we might build a wheel with explicit python dependencies tied to hashes. But that might not bundle all the true dependencies (eg. system libraries).
So, we have to reach out for other artifact formats which do allow us to encapsulate all our dependencies (eg. Docker, deb, rpm, conda, OS golden images, etc). This is a bigger problem with Python packaging that is definitely outside of poetry’s scope.
There are plenty of tools which can easily encode the procedures to bundle python wheels into a new artifact, but nine times out of ten they are excessive or they make poetry redundant and/or useless.
scripts
will probably house everything, but people will always exceed your expectations). However, pyproject.toml seems to be swallowing all extra files that aren’t your actual code which is great but then that means any extra script (python or otherwise) is swimming upstream.To be honest, what I don’t want is having to write documentation on how to set up a dev environment including on installing
N
plugins before they clone down the repository. Writing python scripts to run “tasks” might work but it can quickly become a soup of arbitrary code (and probably bad security practices). And if I am going through all that effort, I might as well just use setuptools or flit if poetry doesn’t really have differentiating utility built-in from them.It just feels a bit odd. If poetry is a package manager, then it shouldn’t also build packages. You don’t use APT or DNF to build deb or rpm files.