Setup changes

This commit is contained in:
Zen 2020-05-02 22:10:30 +03:00
parent f60921ace6
commit 6bae91abfb
2 changed files with 5 additions and 5 deletions

View file

@ -709,7 +709,7 @@ class Av1an:
self.log(f"File: {source.stem}, {frames}\n"
f"New vmaf: {new_vmaf}\n"
f"Probes: {pr}"
f"Target CQ: {tg_cq[0]}, Dif: {round(difference, 2)}\n")
f"Target CQ: {round(tg_cq[0])}, Dif: {round(difference, 2)}\n")
return int(tg_cq[0]), f'Target: CQ {int(new_tg_cq[0])} Vmaf: {round(float(new_tg_cq[1]), 2)}\n'
except Exception as e:

View file

@ -10,12 +10,12 @@ REQUIRES = [
'matplotlib',
]
with open("README.md", "r") as fh:
long_description = fh.read()
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Av1an", # Replace with your own username
version="1.8.0",
name="Av1an",
version="1.8.0-1",
author="Master_Of_Zen",
author_email="master_of_zen@protonmail.com",
description="All-in-one encode toolkit",