This repository has been archived by the owner on Mar 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
61 lines (57 loc) · 1.81 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3.7
# -*- coding: utf-8 -*-
import setuptools
import BiliDriveEx
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
install_requires = fh.read().splitlines()
setuptools.setup(
name="BiliDriveEx",
version=BiliDriveEx.__version__,
url="https://github.com/apachecn/BiliDriveEx",
author=BiliDriveEx.__author__,
author_email=BiliDriveEx.__email__,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: Other/Proprietary License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
],
description="☁️ 哔哩哔哩云 Ex,支持任意文件的全速上传与下载",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"bilibili",
"cloud",
"disk",
"drive",
"storage",
"pan",
"yun",
"B站",
"哔哩哔哩",
"网盘",
"云",
],
install_requires=install_requires,
python_requires=">=3.6",
entry_points={
'console_scripts': [
"BiliDriveEx=BiliDriveEx.__main__:main",
"bdex=BiliDriveEx.__main__:main",
],
},
packages=setuptools.find_packages(),
)