fix type errors in setup.py (#179)
This commit is contained in:
parent
6243540ae7
commit
1885721182
7
setup.py
7
setup.py
@ -10,17 +10,18 @@
|
|||||||
CURRENT_DIR = Path(__file__).parent
|
CURRENT_DIR = Path(__file__).parent
|
||||||
|
|
||||||
|
|
||||||
def get_long_description():
|
def get_long_description() -> str:
|
||||||
readme_md = CURRENT_DIR / "README.md"
|
readme_md = CURRENT_DIR / "README.md"
|
||||||
with open(readme_md, encoding="utf8") as ld_file:
|
with open(readme_md, encoding="utf8") as ld_file:
|
||||||
return ld_file.read()
|
return ld_file.read()
|
||||||
|
|
||||||
|
|
||||||
def get_version():
|
def get_version() -> str:
|
||||||
black_py = CURRENT_DIR / "black.py"
|
black_py = CURRENT_DIR / "black.py"
|
||||||
_version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)")
|
_version_re = re.compile(r"__version__\s+=\s+(?P<version>.*)")
|
||||||
with open(black_py, "r", encoding="utf8") as f:
|
with open(black_py, "r", encoding="utf8") as f:
|
||||||
version = _version_re.search(f.read()).group("version")
|
match = _version_re.search(f.read())
|
||||||
|
version = match.group("version") if match is not None else '"unknown"'
|
||||||
return str(ast.literal_eval(version))
|
return str(ast.literal_eval(version))
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user