• just another devA
    link
    fedilink
    English
    722 days ago

    Does it allow differentiating between dependencies and dev dependencies though? I couldn’t gather that from the article.

    • @[email protected]
      link
      fedilink
      1022 days ago

      UV has a shitload of features. I’ve only ever really used it for making virtualemvs for easier cross platform compatibility, but even just for that, there’s tons of options related to which packages, from where, etc.

      tl:dr probably, although differentiating between “deploy” and “dev” installs is the task of the package config which UV doesn’t (to my knowledge) replace in any way.

    • @[email protected]
      link
      fedilink
      1
      edit-2
      19 days ago

      wreck can. It’s venv aware. Takes full advantage of hierarchical requirement files. Is intuitive. The learning curve is minimal. Written in Python.

      [[tool.wreck.venvs]]
      venv_base_path = '.venv'
      reqs = [
          'requirements/pip',
          'requirements/pip-tools',
          'requirements/prod',
          'requirements/dev',
          'requirements/manage',
          'requirements/kit',
          'requirements/mypy',
          'requirements/tox',
      ]
      [[tool.wreck.venvs]]
      venv_base_path = '.doc/.venv'
      reqs = [
          'docs/requirements',
          'docs/pip-tools',
      ]
      
      [tool.setuptools.dynamic]
      dependencies = { file = ['requirements/prod.unlock'] }
      optional-dependencies.pip = { file = ['requirements/pip.lock'] }
      optional-dependencies.pip_tools = { file = ['requirements/pip-tools.lock'] }
      optional-dependencies.dev = { file = ['requirements/dev.lock'] }
      optional-dependencies.manage = { file = ['requirements/manage.lock'] }
      optional-dependencies.docs = { file = ['docs/requirements.lock'] }
      

      reqs fix --venv-relpath='.venv'

      reqs fix --venv-relpath='.doc/.venv'

      From *.in requirements files would produce *.unlock and *.lock files for venv .venv. Package versions are sync’ed within all requirements files within that venv.