How do we specify paste entrypoints
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.
Question
How can I replicate the non-script / paste entrypoints? Specifically, for a pyramid project, I’ve got:
entry_points={
'paste.app_factory': [
'main = someproject:main',
],
Is there a way to do this in poetry?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (4 by maintainers)
Top Results From Across the Web
Entry points specification - Python Packaging User Guide
Entry points are a mechanism for an installed distribution to advertise components it provides to be discovered and used by other code. For...
Read more >Explain Python entry points? - setuptools - Stack Overflow
Entry points are useful for allowing one package do use plugins that are in another package. For instance, Ian Bicking's Paste project uses ......
Read more >Dockerfile reference - Docker Documentation
An ENTRYPOINT allows you to configure a container that will run as an executable. ... Command line arguments to docker run <image> will...
Read more >Python Apps the Right Way: entry points and scripts
I'm attempting to use your method here to create an entrypoint to __main__.py but my multiprocessing code is in the main() method. Is...
Read more >Enum CopyPasteType | Apps Script - Google Developers
Property Type Description
PASTE_NORMAL Enum Paste values, formulas, formats and merges.
PASTE_FORMAT Enum Paste the format only.
PASTE_FORMULA Enum Paste the formulas only.
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 FreeTop 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
Top GitHub Comments
i wonder whether an
entrypoints
section in the docs for thepyproject.toml
that points to theplugins
andscripts
sections would be helpful to avoid such confusions. i’m always looking for it in the sidebar, but have to search the whole page to find what i’m looking for.@viraptor this is done via the plugin section.