forked from master-of-zen/Av1an
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 930 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import setuptools
REQUIRES = [
'numpy',
'scenedetect[opencv,progress_bar]',
'opencv-python',
'tqdm',
'psutil',
'scipy',
'matplotlib',
]
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Av1an",
version="1.13-5",
author="Master_Of_Zen",
author_email="master_of_zen@protonmail.com",
description="All-in-one encode toolkit",
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',
)