Increment version

This commit is contained in:
taizan-hokuto
2020-02-29 08:04:14 +09:00
parent b302454083
commit 55a58f532d
6 changed files with 4 additions and 15 deletions

View File

@@ -16,16 +16,6 @@ def _test_requirements():
for name in open(path.join(
root_dir, 'requirements_test.txt')).readlines()]
txt= ''
with open('README.MD', 'r', encoding='utf-8') as f:
txt = f.read()
with open('README1.MD', 'w', encoding='utf-8', newline='\n') as f:
f.write(txt)
remove("README.MD")
rename("README1.MD","README.MD")
with open(path.join(root_dir, package_name, '__init__.py')) as f:
init_text = f.read()
version = re.search(
@@ -55,7 +45,7 @@ with open('README.md', encoding='utf-8') as f:
setup(
name=package_name,
packages=find_packages(exclude=['*log.txt','*tests']),
packages=find_packages(exclude=['*log.txt','*tests','*testrun']),
version=version,
url=url,
author=author,