2021-01-09 20:37:01 +00:00
|
|
|
import setuptools
|
|
|
|
|
|
|
|
REQUIRES = [
|
2021-04-12 23:23:48 +00:00
|
|
|
"numpy",
|
|
|
|
"psutil",
|
|
|
|
"scipy",
|
2021-01-09 20:37:01 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
|
|
|
|
2021-04-26 20:48:30 +00:00
|
|
|
version = "6.1.3"
|
2021-01-09 20:37:01 +00:00
|
|
|
|
|
|
|
setuptools.setup(
|
|
|
|
name="Av1an-minimal",
|
|
|
|
version=version,
|
|
|
|
author="Master_Of_Zen",
|
|
|
|
author_email="master_of_zen@protonmail.com",
|
2021-04-12 23:23:48 +00:00
|
|
|
description="Cross-platform command-line AV1 / VP9 / HEVC / H264 / VVC encoding framework with per scene quality encoding",
|
2021-01-09 20:37:01 +00:00
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
url="https://github.com/master-of-zen/Av1an",
|
2021-04-12 23:23:48 +00:00
|
|
|
packages=setuptools.find_packages(".", exclude="tests"),
|
2021-01-09 20:37:01 +00:00
|
|
|
install_requires=REQUIRES,
|
2021-04-12 23:23:48 +00:00
|
|
|
py_modules=["av1an"],
|
2021-01-09 20:37:01 +00:00
|
|
|
entry_points={"console_scripts": ["av1an=av1an:main"]},
|
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
2021-04-12 23:23:48 +00:00
|
|
|
python_requires=">=3.6",
|
2021-01-09 20:37:01 +00:00
|
|
|
)
|