Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 2 of 2 for host:python-poetry.org (0.01 sec)

Similar results are displayed.

  1. 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 Jan 24 09:42:33 UTC 2025
    - Last Modified: Fri Jan 24 00:30:35 UTC 2025
    - 151.2K bytes
    - Viewed (0)
  2. 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: Fri Jan 24 09:43:17 UTC 2025
    - Last Modified: Fri Jan 24 01:41:42 UTC 2025
    - 151.6K bytes
    - Viewed (0)
Back to top