$ git show --format=fuller --patch-with-stat --summary 1bb5f373d1340910a486039f525f863c5bcf74f3
commit 1bb5f373d1340910a486039f525f863c5bcf74f3
Author: Bernhard Rosenkränzer <bero@lindev.ch>
AuthorDate: Sat Jan 2 01:00:38 2021 +0100
Commit: Bernhard Rosenkränzer <bero@lindev.ch>
CommitDate: Sat Jan 2 01:00:38 2021 +0100
Initial package
---
.abf.yml | 2 ++
python-dotenv.spec | 30 ++++++++++++++++++++++++++++++
2 files changed, 32 insertions(+)
create mode 100644 .abf.yml
create mode 100644 python-dotenv.spec
diff --git a/.abf.yml b/.abf.yml
new file mode 100644
index 0000000..7277aa3
--- /dev/null
+++ b/.abf.yml
@@ -0,0 +1,2 @@
+sources:
+ python-dotenv-0.15.0.tar.gz: e0ea42d768f0ab27ef18f8f28aeeadad977f091e
diff --git a/python-dotenv.spec b/python-dotenv.spec
new file mode 100644
index 0000000..2c3fa9b
--- /dev/null
+++ b/python-dotenv.spec
@@ -0,0 +1,30 @@
+Name: python-dotenv
+Version: 0.15.0
+Release: 1
+Group: Development/Python
+Summary: Python module for adding key-value pairs from .env files to the environment
+License: BSD
+URL: http://pypi.org/project/python-dotenv/
+Source0: https://pypi.python.org/packages/source/p/python-dotenv/python-dotenv-%{version}.tar.gz
+BuildRequires: pkgconfig(python)
+BuildRequires: python3dist(setuptools)
+BuildArch: noarch
+
+%description
+Reads the key-value pair from .env file and adds them to environment variable.
+It is great for managing app settings during development and in production
+using 12-factor principles.
+
+%prep
+%autosetup -p1
+
+%build
+%py_build
+
+%install
+%py_install
+
+%files
+%license LICENSE
+%{_bindir}/dotenv
+%{python_sitelib}/*