mirror of
https://github.com/neondatabase/neon.git
synced 2026-01-04 03:52:56 +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/
33 lines
735 B
TOML
33 lines
735 B
TOML
[tool.poetry]
|
|
name = "zenith"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Dmitry Rodionov <dmitry@zenith.tech>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
pytest = "^6.2.5"
|
|
psycopg2-binary = "^2.9.1"
|
|
typing-extensions = "^3.10.0"
|
|
PyJWT = {version = "^2.1.0", extras = ["crypto"]}
|
|
requests = "^2.26.0"
|
|
pytest-xdist = "^2.3.0"
|
|
asyncpg = "^0.24.0"
|
|
aiopg = "^1.3.1"
|
|
cached-property = "^1.5.2"
|
|
Jinja2 = "^3.0.2"
|
|
types-requests = "^2.27.7"
|
|
types-psycopg2 = "^2.9.6"
|
|
boto3 = "^1.20.40"
|
|
boto3-stubs = "^1.20.40"
|
|
moto = {version = "^3.0.0", extras = ["server"]}
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
yapf = "==0.31.0"
|
|
flake8 = "^3.9.2"
|
|
mypy = "==0.910"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|