mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
34 lines
948 B
Python
34 lines
948 B
Python
|
import setuptools
|
||
|
|
||
|
REQUIRES = [
|
||
|
'numpy',
|
||
|
'psutil',
|
||
|
'scipy',
|
||
|
]
|
||
|
|
||
|
with open("README.md", "r") as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
version = "5.4-1"
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="Av1an-minimal",
|
||
|
version=version,
|
||
|
author="Master_Of_Zen",
|
||
|
author_email="master_of_zen@protonmail.com",
|
||
|
description="Cross-platform command-line AV1 / VP9 / HEVC / H264 / VVC encoding framework with per scene quality encoding",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type="text/markdown",
|
||
|
url="https://github.com/master-of-zen/Av1an",
|
||
|
packages=setuptools.find_packages('.', exclude='tests'),
|
||
|
install_requires=REQUIRES,
|
||
|
py_modules=['av1an'],
|
||
|
entry_points={"console_scripts": ["av1an=av1an:main"]},
|
||
|
classifiers=[
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
],
|
||
|
python_requires='>=3.6',
|
||
|
)
|