16 lines
463 B
Plaintext
16 lines
463 B
Plaintext
# Description: Add .env support to your django/flask apps in development and deployments
|
|
# URL: https://pypi.org/project/python-dotenv/
|
|
# Maintainer: Matt Housh, jaeger at crux dot ninja
|
|
# Depends on: python3-setuptools
|
|
|
|
name=python3-dotenv
|
|
version=0.17.0
|
|
release=1
|
|
source=(https://pypi.python.org/packages/source/p/python-dotenv/python-dotenv-$version.tar.gz)
|
|
|
|
build() {
|
|
cd python-dotenv-$version
|
|
python3 setup.py build
|
|
python3 setup.py install --root=$PKG
|
|
}
|