changeset 71:80dcb41928a7

Rename README to README.txt to be more consistent with LICENSE.txt
author Franz Glasner <hg@dom66.de>
date Fri, 02 Mar 2018 01:11:19 +0100
parents b764fe49d9bb
children ebdca6278bb3
files MANIFEST.in README README.txt doc/readme.rst setup.py
diffstat 5 files changed, 31 insertions(+), 31 deletions(-) [+]
line wrap: on
line diff
--- a/MANIFEST.in	Fri Mar 02 01:05:57 2018 +0100
+++ b/MANIFEST.in	Fri Mar 02 01:11:19 2018 +0100
@@ -1,3 +1,3 @@
-include .hg_archival.txt .hgtags .hgignore LICENSE.txt
+include .hg_archival.txt .hgtags .hgignore README.txt LICENSE.txt
 recursive-include doc *.*
 prune doc/_build
--- a/README	Fri Mar 02 01:05:57 2018 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-.. -*- coding: utf-8; mode: rst; -*-
-
-README
-======
-
-:Author:     Franz Glasner
-:Version:    |release|	   
-:Date:       |VCSHGshortdate|
-:Revision:   |VCSRevision|	   
-:Repository: |VCSHGpath|
-
-
-"ConfigMix" is a library for helping with configuration files.
-
-
-Links
------
-
-Search for "yaml" on `PyPi`
-
-- https://pypi.python.org/pypi/layered-yaml-attrdict-config/16.1.0
-
-  The package and it's "Links" section
-
-
-- https://configloader.readthedocs.org/en/latest/
-
-  For the API
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/README.txt	Fri Mar 02 01:11:19 2018 +0100
@@ -0,0 +1,28 @@
+.. -*- coding: utf-8; mode: rst; -*-
+
+README
+======
+
+:Author:     Franz Glasner
+:Version:    |release|	   
+:Date:       |VCSHGshortdate|
+:Revision:   |VCSRevision|	   
+:Repository: |VCSHGpath|
+
+
+"ConfigMix" is a library for helping with configuration files.
+
+
+Links
+-----
+
+Search for "yaml" on `PyPi`
+
+- https://pypi.python.org/pypi/layered-yaml-attrdict-config/16.1.0
+
+  The package and it's "Links" section
+
+
+- https://configloader.readthedocs.org/en/latest/
+
+  For the API
--- a/doc/readme.rst	Fri Mar 02 01:05:57 2018 +0100
+++ b/doc/readme.rst	Fri Mar 02 01:11:19 2018 +0100
@@ -1,3 +1,3 @@
 .. -*- coding: utf-8 -*-
 
-.. include:: ../README
+.. include:: ../README.txt
--- a/setup.py	Fri Mar 02 01:05:57 2018 +0100
+++ b/setup.py	Fri Mar 02 01:11:19 2018 +0100
@@ -23,7 +23,7 @@
 with open(os.path.join(pkg_root, "configmix", "__init__.py"), "rb") as vf:
     version = _version_re.search(vf.read()).group(2).decode("utf-8")
 
-with open(os.path.join(pkg_root, "README"), "rt") as rf:
+with open(os.path.join(pkg_root, "README.txt"), "rt") as rf:
     long_description = rf.read()
 
 setup(