From 6058838239847a5fa23d7262093e5da29e973274 Mon Sep 17 00:00:00 2001
From: Lance Edgar <lance@edbob.org>
Date: Fri, 13 Sep 2024 19:27:11 -0500
Subject: [PATCH 1/2] build: ignore temp files

---
 .gitignore | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitignore b/.gitignore
index c16e5b6..e482cdf 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
+*~
 *.pyc
 rattail_fabric.egg-info/

From b119a8eee5c17e19492abf0218af945eb2a6785c Mon Sep 17 00:00:00 2001
From: Lance Edgar <lance@edbob.org>
Date: Fri, 13 Sep 2024 19:27:54 -0500
Subject: [PATCH 2/2] docs: use markdown for readme file

---
 README.md  | 11 +++++++++++
 README.rst | 14 --------------
 setup.py   |  2 +-
 3 files changed, 12 insertions(+), 15 deletions(-)
 create mode 100644 README.md
 delete mode 100644 README.rst

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..5893279
--- /dev/null
+++ b/README.md
@@ -0,0 +1,11 @@
+
+# rattail-fabric
+
+Rattail is a retail software framework, released under the GNU General Public
+License.
+
+This package contains various utility functions for use with
+[Fabric](http://www.fabfile.org/).
+
+Please see Rattail's [home page](https://rattailproject.org/) for more
+information.
diff --git a/README.rst b/README.rst
deleted file mode 100644
index 6622b69..0000000
--- a/README.rst
+++ /dev/null
@@ -1,14 +0,0 @@
-
-rattail-fabric
-==============
-
-Rattail is a retail software framework, released under the GNU General Public
-License.
-
-This package contains various utility functions for use with `Fabric`_.
-
-.. _`Fabric`: http://www.fabfile.org/
-
-Please see Rattail's `home page`_ for more information.
-
-.. _`home page`: https://rattailproject.org/
diff --git a/setup.py b/setup.py
index c30287f..21c8182 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ from setuptools import setup, find_packages
 
 here = os.path.abspath(os.path.dirname(__file__))
 exec(open(os.path.join(here, 'rattail_fabric', '_version.py')).read())
-README = open(os.path.join(here, 'README.rst')).read()
+README = open(os.path.join(here, 'README.md')).read()
 
 
 requires = [