4909870115
Pipenv is a tool that brings better package dependency management to python. It can automatically create and manage virtualenv as well as managing package dependencies using Pipfile and Pipfile.lock. Adding this dependency manager into Airship projects will decrease package version conflicts between projects and help increase security through hash validation of packages and vulnerability scans. Changes: - Imports requirements.txt type files into Pipfile - Pipenv dependency management in tox - Switches Safety package for "pipenv check", an implementation of Safety - Unpins or loosens pins on all development packages - Soft pins package dependencies to encourage adoption of bug fixes and prevent small version mismatches Pipenv Docs: https://docs.pipenv.org/en/latest/ Helpful Pipenv Guide: https://realpython.com/pipenv-guide/ Change-Id: I2c9cec8acf6b6c6157f807b010def873c349d3ae
27 lines
479 B
TOML
27 lines
479 B
TOML
[[source]]
|
|
name = "pypi"
|
|
url = "https://pypi.org/simple"
|
|
verify_ssl = true
|
|
|
|
[dev-packages]
|
|
pbr = ">=2.0.0"
|
|
pytest = "*"
|
|
pytest-xdist = "*"
|
|
pytest-cov = "*"
|
|
yapf = ">=0.27.0"
|
|
hacking = ">=1.1.0"
|
|
bandit = ">=1.6.0"
|
|
tox = "*"
|
|
|
|
[packages]
|
|
click = "~=7.0"
|
|
click-plugins = "~=1.1.1"
|
|
jsonschema = "~=3.0.1"
|
|
netaddr = "~=0.7.19"
|
|
spyglass-plugin-xls = {git = "https://opendev.org/airship/spyglass-plugin-xls.git"}
|
|
Jinja2 = "~=2.10.1"
|
|
PyYAML = "~=5.1.1"
|
|
|
|
[requires]
|
|
python_version = "3.6"
|