forked from sdaqo/anipy-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (30 loc) · 941 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="anipy_cli",
packages=find_packages(include=["anipy_cli"]),
version="2.4.18",
python_requires=">3.9",
description="Little tool in python to watch anime from the terminal (the better way to watch anime)",
long_description=long_description,
long_description_content_type="text/markdown",
author="sdaqo",
author_email="sdaqo.dev@protonmail.com",
url="https://github.com/sdaqo/anipy-cli",
license="GPL-3.0",
install_requires=[
"bs4",
"requests",
"tqdm",
"pycryptodomex",
"better-ffmpeg-progress",
"kitsu.py-extended",
"pypresence",
"python-dateutil",
"m3u8",
"tqdm",
"moviepy",
],
entry_points="[console_scripts]\nanipy-cli=anipy_cli.run_anipy_cli:main",
)