- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1 - 10 of 11 for host:python-poetry.org (0.01 sec)
-
The pyproject.toml file | main | Documentation ...
The pyproject.toml file In package mode, the only required fields are name and version (either in the project section or in the tool.poetry section). Other fields are optional. In non-package mode, the name and version fields are required if using the project section. Note Run poetry check to print warnings about deprecated fields. The project section The project section of the pyproject.toml file according to the specification of the PyPA. name The name of the package. Always required when the project section is specifiedpython-poetry.org/docs/main/pyproject/ Similar Results (1)Registered: Mon Mar 31 09:27:19 UTC 2025 - Last Modified: Mon Mar 31 04:05:38 UTC 2025 - 123.3K bytes - Viewed (0) -
Commands | Documentation | Poetry - Python depe...
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). All command-line arguments will be resolved relative to the given directory. --project=PROJECT (-P): Specify another path as the project root. All command-line arguments will be resolved relative to the current working directory or directory specified using --directory option if used. about The about command displays global information about Poetry, including the current version and version of poetry-core.python-poetry.org/docs/cli/ Similar Results (1)Registered: Mon Mar 31 09:24:52 UTC 2025 - Last Modified: Mon Mar 31 00:36:44 UTC 2025 - 136.1K bytes - Viewed (0) -
FAQ | main | Documentation | Poetry - Python de...
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/main/faq/ Similar Results (1)Registered: Mon Mar 31 09:27:38 UTC 2025 - Last Modified: Mon Mar 31 09:27:38 UTC 2025 - 101.7K 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: Mon Mar 31 09:25:48 UTC 2025 - Last Modified: Mon Mar 31 04:40:22 UTC 2025 - 116.8K bytes - Viewed (0) -
Building extension modules | main | Documentati...
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/main/building-extension-modules/ Similar Results (1)Registered: Mon Mar 31 09:27:12 UTC 2025 - Last Modified: Mon Mar 31 09:27:12 UTC 2025 - 100.1K bytes - Viewed (0) -
Dependency specification | main | Documentation...
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/main/dependency-specification/ Similar Results (1)Registered: Mon Mar 31 09:26:48 UTC 2025 - Last Modified: Mon Mar 31 09:26:48 UTC 2025 - 151.9K bytes - Viewed (0)