- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 21 - 30 of 47 for host:python-poetry.org (0.02 sec)
-
Repositories | main | Documentation | Poetry - ...
Repositories Poetry supports the use of PyPI and private repositories for discovery of packages as well as for publishing your projects. By default, Poetry is configured to use the PyPI repository, for package installation and publishing. So, when you add dependencies to your project, Poetry will assume they are available on PyPI. This represents most cases and will likely be enough for most users. Private Repository Example Installing from private package sources By default, Poetry discovers and installs packages from PyPI. But, you want to install a dependency to your project for a simple API repository? Let’s do it.python-poetry.org/docs/main/repositories/ Similar Results (1)Registered: Fri Jun 27 10:20:29 UTC 2025 - Last Modified: Fri Jun 27 10:20:29 UTC 2025 - 89.6K bytes - Viewed (0) -
Dependency specification | Documentation | Poet...
Dependency specification Dependencies for a project can be specified in various forms, which depend on the type of the dependency and on the optional constraints that might be needed for it to be installed. project.dependencies and tool.poetry.dependencies Prior Poetry 2.0, dependencies had to be declared in the tool.poetry.dependencies section of the pyproject.toml file. [tool.poetry.dependencies] requests = "^2.13.0" With Poetry 2.0, you should consider using the project.dependencies section instead. [project] # ... dependencies = [ "requests (>=2.23.0,<3.0.0)" ] While dependencies in tool.poetry.dependencies are specified using toml tables, dependencies in project.dependencies are specified as strings according to PEP 508.python-poetry.org/docs/dependency-specification/Registered: Fri Jun 27 10:19:53 UTC 2025 - Last Modified: Fri Jun 27 01:45:15 UTC 2025 - 152K bytes - Viewed (0) -
FAQ | Documentation | Poetry - Python dependenc...
FAQ Why is the dependency resolution process slow? While the dependency resolver at the heart of Poetry is highly optimized and should be fast enough for most cases, with certain sets of dependencies, it can take time to find a valid solution. This is due to the fact that not all libraries on PyPI have properly declared their metadata and, as such, they are not available via the PyPI JSON API. At this point, Poetry has no choice but to download the packages and inspect them to get the necessary information. This is an expensive operation, both in bandwidth and time, which is why it seems this is a long process.python-poetry.org/docs/faq/ Similar Results (1)Registered: Fri Jun 27 10:19:31 UTC 2025 - Last Modified: Fri Jun 27 02:28:13 UTC 2025 - 101.4K bytes - Viewed (0) -
Building extension modules | Documentation | Po...
Building Extension Modules Warning While this feature has been around since almost the beginning of the Poetry project and has needed minimal changes, it is still considered unstable. You can participate in the discussions about stabilizing this feature here. And as always, your contributions towards the goal of improving this feature are also welcome. Poetry allows a project developer to introduce support for, build and distribute native extensions within their project. In order to achieve this, at the highest level, the following steps are required.python-poetry.org/docs/building-extension-modules/ Similar Results (1)Registered: Fri Jun 27 10:19:36 UTC 2025 - Last Modified: Fri Jun 27 10:19:36 UTC 2025 - 99.8K bytes - Viewed (0) -
FAQ | 1.8 | Documentation | Poetry - Python dep...
FAQ Why is the dependency resolution process slow? While the dependency resolver at the heart of Poetry is highly optimized and should be fast enough for most cases, with certain sets of dependencies it can take time to find a valid solution. This is due to the fact that not all libraries on PyPI have properly declared their metadata and, as such, they are not available via the PyPI JSON API. At this point, Poetry has no choice but to download the packages and inspect them to get the necessary information. This is an expensive operation, both in bandwidth and time, which is why it seems this is a long process.python-poetry.org/docs/1.8/faq/Registered: Fri Jun 27 10:21:34 UTC 2025 - Last Modified: Fri Jun 27 10:21:34 UTC 2025 - 73.9K bytes - Viewed (0) -
pre-commit hooks | 1.8 | Documentation | Poetry...
pre-commit hooks pre-commit is a framework for building and running git hooks. See the official documentation for more information: pre-commit.com This document provides a list of available pre-commit hooks provided by Poetry. Note If you specify the args: for a hook in your .pre-commit-config.yaml, the defaults are overwritten. You must fully specify all arguments for your hook if you make use of args:. Note If the pyproject.toml file is not in the root directory, you can specify args: ["-C", "./subdirectory"]. poetry-check The poetry-check hook calls the poetry check command to make sure the poetry configuration does not get committed in a broken state.python-poetry.org/docs/1.8/pre-commit-hooks/Registered: Fri Jun 27 10:21:51 UTC 2025 - Last Modified: Fri Jun 27 10:21:51 UTC 2025 - 67.2K bytes - Viewed (0) -
Community | 1.8 | Documentation | Poetry - Pyth...
Community Badge For any projects using Poetry, you may add its official badge somewhere prominent like the README. Markdown [](https://python-poetry.org/) reStructuredText .. image:: https://img.shields.io/endpoint?url=https://python-poetry.org/badge/v0.json :alt: Poetry :target: https://python-poetry.org/python-poetry.org/docs/1.8/community/Registered: Fri Jun 27 10:21:31 UTC 2025 - Last Modified: Fri Jun 27 10:21:31 UTC 2025 - 54.1K bytes - Viewed (0) -
Commands | 1.8 | Documentation | Poetry - Pytho...
Commands You’ve already learned how to use the command-line interface to do some things. This chapter documents all the available commands. To get help from the command-line, simply call poetry to see the complete list of commands, then --help combined with any of those can give you more information. Global options --verbose (-v|vv|vvv): Increase the verbosity of messages: “-v” for normal output, “-vv” for more verbose output and “-vvv” for debug. --help (-h) : Display help information. --quiet (-q) : Do not output any message. --ansi: Force ANSI output. --no-ansi: Disable ANSI output. --version (-V): Display this application version. --no-interaction (-n): Do not ask any interactive question. --no-plugins: Disables plugins. --no-cache: Disables Poetry source caches. --directory=DIRECTORY (-C): The working directory for the Poetry command (defaults to the current working directory). new This command will help you kickstart your new Python project by creating a directory structure suitable for most projects.python-poetry.org/docs/1.8/cli/Registered: Fri Jun 27 10:22:16 UTC 2025 - Last Modified: Fri Jun 27 08:20:59 UTC 2025 - 116.8K bytes - Viewed (0) -
Plugins | Documentation | Poetry - Python depen...
Plugins Poetry supports using and building plugins if you wish to alter or expand Poetry’s functionality with your own. For example if your environment poses special requirements on the behaviour of Poetry which do not apply to the majority of its users or if you wish to accomplish something with Poetry in a way that is not desired by most users. In these cases you could consider creating a plugin to handle your specific logic.python-poetry.org/docs/plugins/ Similar Results (1)Registered: Fri Jun 27 10:19:46 UTC 2025 - Last Modified: Fri Jun 27 01:45:52 UTC 2025 - 76.3K bytes - Viewed (0) -
Introduction | 1.8 | Documentation | Poetry - P...
Introduction Poetry is a tool for dependency management and packaging in Python. It allows you to declare the libraries your project depends on and it will manage (install/update) them for you. Poetry offers a lockfile to ensure repeatable installs, and can build your project for distribution. System requirements Poetry requires Python 3.8+. It is multi-platform and the goal is to make it work equally well on Linux, macOS and Windows.python-poetry.org/docs/1.8/Registered: Fri Jun 27 10:20:11 UTC 2025 - Last Modified: Fri Jun 27 00:59:13 UTC 2025 - 81.6K bytes - Viewed (0)