comparison setup.py @ 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 af3e0ab76799
comparison
equal deleted inserted replaced
70:b764fe49d9bb 71:80dcb41928a7
21 re.MULTILINE) 21 re.MULTILINE)
22 22
23 with open(os.path.join(pkg_root, "configmix", "__init__.py"), "rb") as vf: 23 with open(os.path.join(pkg_root, "configmix", "__init__.py"), "rb") as vf:
24 version = _version_re.search(vf.read()).group(2).decode("utf-8") 24 version = _version_re.search(vf.read()).group(2).decode("utf-8")
25 25
26 with open(os.path.join(pkg_root, "README"), "rt") as rf: 26 with open(os.path.join(pkg_root, "README.txt"), "rt") as rf:
27 long_description = rf.read() 27 long_description = rf.read()
28 28
29 setup( 29 setup(
30 name="ConfigMix", 30 name="ConfigMix",
31 version=version, 31 version=version,