-
Notifications
You must be signed in to change notification settings - Fork 178
/
setup.py
57 lines (53 loc) · 1.6 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
#!/usr/bin/env python3.7
# -*- coding: utf-8 -*-
import setuptools
import BiliDrive
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="BiliDrive",
version=BiliDrive.__version__,
url="https://github.com/Hsury/BiliDrive",
author=BiliDrive.__author__,
author_email=BiliDrive.__email__,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: File Sharing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
],
description="☁️ 哔哩哔哩云,支持任意文件的全速上传与下载",
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': [
"BiliDrive=BiliDrive.__main__:main",
],
},
packages=setuptools.find_packages(),
)