Info2: << Package: dotenv-py%type_pkg[python] Version: 1.0.1 Revision: 1 Description: Read key-value pairs from a .env file License: BSD # Free to modify, update, and take over Maintainer: Hanspeter Niederstrasser Type: python (3.8 3.9 3.10) Depends: << python%type_pkg[python], click-py%type_pkg[python], sh-py%type_pkg[python] << BuildDepends: << setuptools-tng-py%type_pkg[python] << Source: https://files.pythonhosted.org/packages/source/p/python-dotenv/python-dotenv-%v.tar.gz Source-Checksum: SHA256(e324ee90a023d808f1959c46bcbc04446a10ced277783dc6ee09987c37ec10ca) CompileScript: << %p/bin/python%type_raw[python] setup.py build << InfoTest: << TestDepends: << pytest-py%type_pkg[python], pytest-cov-py%type_pkg[python] << TestScript: << # don't run tests that require the executable to be installed PYTHONPATH=%b/build/lib %p/bin/python%type_raw[python] -m pytest -p no:relaxed -vv -k 'not test_get_default_path and not test_run and not test_run_with_existing_variable and not test_run_with_existing_variable_not_overridden and not test_run_with_none_value and not test_run_with_other_env' || exit 2 find ./build -name "*.pyc" -exec rm {} \; << << InstallScript: << #!/bin/sh -ev %p/bin/python%type_raw[python] setup.py install --root=%d for i in dotenv ; do mv %i/bin/$i %i/bin/$i-py%type_raw[python] done << PostInstScript: << update-alternatives --verbose --install %p/bin/dotenv dotenv %p/bin/dotenv-py%type_raw[python] %type_pkg[python] << PreRmScript: << if [ $1 != "upgrade" ]; then update-alternatives --verbose --remove dotenv %p/bin/dotenv-py%type_raw[python] fi << DocFiles: LICENSE README.md Homepage: https://github.com/theskumar/python-dotenv DescDetail: << Python-dotenv reads key-value pairs from a .env file and can set them as environment variables. It helps in the development of applications following the 12-factor principles. << <<