Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
poetry-core / src / poetry / core / semver / patterns.py
Size: Mime:
from __future__ import annotations

from poetry.core.constraints.version.patterns import BASIC_CONSTRAINT
from poetry.core.constraints.version.patterns import CARET_CONSTRAINT
from poetry.core.constraints.version.patterns import COMPLETE_VERSION
from poetry.core.constraints.version.patterns import TILDE_CONSTRAINT
from poetry.core.constraints.version.patterns import TILDE_PEP440_CONSTRAINT
from poetry.core.constraints.version.patterns import X_CONSTRAINT


__all__ = [
    "COMPLETE_VERSION",
    "CARET_CONSTRAINT",
    "TILDE_CONSTRAINT",
    "TILDE_PEP440_CONSTRAINT",
    "X_CONSTRAINT",
    "BASIC_CONSTRAINT",
]