Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test

Results 21 - 30 of 45 for timestamp:[now/d-1M TO *] (0.04 sec)

  1. Basic usage | 1.7 | Documentation | Poetry - Py...

    Basic usage For the basic usage introduction we will be installing pendulum, a datetime library. If you have not yet installed Poetry, refer to the Introduction chapter. Project setup First, let’s create our new project, let’s call it poetry-demo: poetry new poetry-demo This will create the poetry-demo directory with the following content: poetry-demo ├── pyproject.toml ├── README.md ├── poetry_demo │ └── __init__.py └── tests └── __init__.py The pyproject.toml file is what is the most important here.
    python-poetry.org/docs/1.7/basic-usage/
    Registered: Mon Oct 28 13:28:11 UTC 2024
    - Last Modified: Mon Oct 28 13:28:11 UTC 2024
    - 73.7K bytes
    - Viewed (0)
  2. Plugins | 1.7 | Documentation | Poetry - Python...

    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/1.7/plugins/
    Registered: Mon Oct 28 13:28:35 UTC 2024
    - Last Modified: Mon Oct 28 13:28:35 UTC 2024
    - 70K bytes
    - Viewed (0)
  3. Managing dependencies | 1.7 | Documentation | P...

    Managing dependencies Dependency groups Poetry provides a way to organize your dependencies by groups. For instance, you might have dependencies that are only needed to test your project or to build the documentation. To declare a new dependency group, use a tool.poetry.group.<group> section where <group> is the name of your dependency group (for instance, test): [tool.poetry.group.test] # This part can be left out [tool.poetry.group.test.dependencies] pytest = "^6.0.0" pytest-mock = "*" Note All dependencies must be compatible with each other across groups since they will be resolved regardless of whether they are required for installation or not (see Installing group dependencies).
    python-poetry.org/docs/1.7/managing-dependencies/ Similar Results (1)
    Registered: Mon Oct 28 13:27:55 UTC 2024
    - Last Modified: Mon Oct 28 13:27:55 UTC 2024
    - 67K bytes
    - Viewed (0)
  4. The pyproject.toml file | Documentation | Poetr...

    The pyproject.toml file The tool.poetry section of the pyproject.toml file is composed of multiple sections. package-mode Whether Poetry operates in package mode (default) or not. Optional See basic usage for more information. package-mode = false name The name of the package. Required in package mode This should be a valid name as defined by PEP 508. name = "my-package" version The version of the package. Required in package mode This should be a valid PEP 440 string.
    python-poetry.org/docs/pyproject/
    Registered: Mon Oct 28 13:24:27 UTC 2024
    - Last Modified: Mon Oct 28 00:54:42 UTC 2024
    - 86.2K bytes
    - Viewed (0)
  5. 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/
    Registered: Mon Oct 28 13:25:30 UTC 2024
    - Last Modified: Mon Oct 28 04:13:54 UTC 2024
    - 69.9K bytes
    - Viewed (0)
  6. Plugins | main | Documentation | Poetry - Pytho...

    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/main/plugins/
    Registered: Mon Oct 28 13:26:19 UTC 2024
    - Last Modified: Mon Oct 28 13:26:19 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. Repositories | Documentation | Poetry - Python ...

    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.
    python-poetry.org/docs/repositories/
    Registered: Mon Oct 28 13:24:42 UTC 2024
    - Last Modified: Mon Oct 28 03:19:10 UTC 2024
    - 86.8K bytes
    - Viewed (0)
  8. 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] # .
    python-poetry.org/docs/main/dependency-specification/
    Registered: Mon Oct 28 13:26:02 UTC 2024
    - Last Modified: Mon Oct 28 07:20:21 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  9. Configuration | main | Documentation | Poetry -...

    Configuration Poetry can be configured via the config command (see more about its usage here) or directly in the config.toml file that will be automatically created when you first run that command. This file can typically be found in one of the following directories: macOS: ~/Library/Application Support/pypoetry Windows: %APPDATA%\pypoetry For Unix, we follow the XDG spec and support $XDG_CONFIG_HOME. That means, by default ~/.config/pypoetry. Local configuration Poetry also provides the ability to have settings that are specific to a project by passing the --local option to the config command.
    python-poetry.org/docs/main/configuration/
    Registered: Mon Oct 28 13:26:16 UTC 2024
    - Last Modified: Mon Oct 28 13:26:16 UTC 2024
    - 84.5K bytes
    - Viewed (0)
  10. pre-commit hooks | Documentation | Poetry - Pyt...

    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", ".
    python-poetry.org/docs/pre-commit-hooks/ Similar Results (1)
    Registered: Mon Oct 28 13:25:43 UTC 2024
    - Last Modified: Mon Oct 28 07:22:02 UTC 2024
    - 65.9K bytes
    - Viewed (0)
Back to top