forked from mos9527/bilibili-toolman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 936 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
# -*- coding: utf-8 -*-
import setuptools, bilibili_toolman
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="bilibili-toolman",
version=bilibili_toolman.__version__,
author="greats3an",
author_email="greats3an@gmail.com",
description=bilibili_toolman.__desc__,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/greats3an/bilibili-toolman",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=["requests", "pycryptodome", "coloredlogs", "yt-dlp", "tqdm"],
entry_points={
"console_scripts": ["bilibili-toolman=bilibili_toolman.cli.main:__main__"]
},
python_requires=">=3.6",
)