2020-04-22 18:51:32 +00:00
|
|
|
import setuptools
|
|
|
|
|
2020-04-22 19:08:07 +00:00
|
|
|
REQUIRES = [
|
|
|
|
'numpy',
|
|
|
|
'scenedetect[opencv,progress_bar]',
|
|
|
|
'opencv-python',
|
|
|
|
'tqdm',
|
|
|
|
'psutil',
|
|
|
|
'scipy',
|
|
|
|
'matplotlib',
|
|
|
|
]
|
|
|
|
|
2020-05-02 19:10:30 +00:00
|
|
|
with open("README.md", "r") as f:
|
|
|
|
long_description = f.read()
|
2020-04-22 18:51:32 +00:00
|
|
|
|
|
|
|
setuptools.setup(
|
2020-05-02 19:10:30 +00:00
|
|
|
name="Av1an",
|
2020-07-17 10:42:28 +00:00
|
|
|
version="1.10.10",
|
2020-04-22 18:51:32 +00:00
|
|
|
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",
|
2020-04-22 19:08:07 +00:00
|
|
|
packages=setuptools.find_packages('.', exclude='tests'),
|
|
|
|
install_requires=REQUIRES,
|
2020-04-23 09:52:46 +00:00
|
|
|
py_modules=['av1an'],
|
|
|
|
entry_points={"console_scripts": ["av1an=av1an:main"]},
|
2020-04-22 18:51:32 +00:00
|
|
|
classifiers=[
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
],
|
|
|
|
python_requires='>=3.6',
|
2020-07-14 01:47:22 +00:00
|
|
|
)
|