- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 1 - 6 of 6 for content_length:[100000 TO 499999] (0.06 sec)
-
Commands | 1.7 | 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.7/cli/Registered: Mon Dec 16 09:54:20 UTC 2024 - Last Modified: Mon Dec 16 02:02:54 UTC 2024 - 114.1K bytes - Viewed (0) -
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, all fields are optional. 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. Required in package modepython-poetry.org/docs/main/pyproject/Registered: Mon Dec 16 09:52:44 UTC 2024 - Last Modified: Mon Dec 16 09:52:44 UTC 2024 - 120K 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). new This command will help you kickstart your new Python project by creating a directory structure suitable for most projects.python-poetry.org/docs/cli/Registered: Mon Dec 16 09:52:14 UTC 2024 - Last Modified: Mon Dec 16 00:30:46 UTC 2024 - 116.3K bytes - Viewed (0) -
Commands | main | Documentation | Poetry - Pyth...
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. new This command will help you kickstart your new Python project by creating a directory structure suitable for most projects.python-poetry.org/docs/main/cli/Registered: Mon Dec 16 09:52:41 UTC 2024 - Last Modified: Mon Dec 16 09:52:41 UTC 2024 - 120K 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/Registered: Mon Dec 16 09:52:35 UTC 2024 - Last Modified: Mon Dec 16 09:52:35 UTC 2024 - 99.9K 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/Registered: Mon Dec 16 09:53:39 UTC 2024 - Last Modified: Mon Dec 16 09:53:39 UTC 2024 - 151.4K bytes - Viewed (0)