mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-23 14:19:58 +00:00
Mainly because it has better support for installing the packages from different python versions. It also has better dependency resolver than Pipenv. And supports modern standard for python dependency management. This includes usage of pyproject.toml for project specific configuration instead of per tool conf files. See following links for details: https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/ https://www.python.org/dev/peps/pep-0518/
8 lines
324 B
Bash
Executable File
8 lines
324 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This is a helper script for setting up/updating our python environment.
|
|
# It is intended to be a primary endpoint for all the people who want to
|
|
# just setup test environment without going into details of python package management
|
|
|
|
poetry install --no-root # this installs dev dependencies by default
|