From 1b8435d08ef4b4eedc45c7de8efd108250dc46df Mon Sep 17 00:00:00 2001 From: wizardforcel <562826179@qq.com> Date: Wed, 22 Jan 2020 00:19:44 +0800 Subject: [PATCH] credit --- BiliDrive/__init__.py | 10 ---------- BiliDriveEx/__init__.py | 10 ++++++++++ {BiliDrive => BiliDriveEx}/__main__.py | 0 {BiliDrive => BiliDriveEx}/bilibili.py | 0 {BiliDrive => BiliDriveEx}/encoder.py | 0 LICENSE | 4 ++-- setup.py | 16 ++++++++-------- 7 files changed, 20 insertions(+), 20 deletions(-) delete mode 100644 BiliDrive/__init__.py create mode 100644 BiliDriveEx/__init__.py rename {BiliDrive => BiliDriveEx}/__main__.py (100%) rename {BiliDrive => BiliDriveEx}/bilibili.py (100%) rename {BiliDrive => BiliDriveEx}/encoder.py (100%) diff --git a/BiliDrive/__init__.py b/BiliDrive/__init__.py deleted file mode 100644 index cef505e..0000000 --- a/BiliDrive/__init__.py +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env python3.7 -# -*- coding: utf-8 -*- - -"""BiliDrive 哔哩哔哩云 -https://github.com/Hsury/BiliDrive""" - -__author__ = "Hsury" -__email__ = "i@hsury.com" -__license__ = "SATA" -__version__ = "2019.12.22" diff --git a/BiliDriveEx/__init__.py b/BiliDriveEx/__init__.py new file mode 100644 index 0000000..bdeccec --- /dev/null +++ b/BiliDriveEx/__init__.py @@ -0,0 +1,10 @@ +#!/usr/bin/env python3.7 +# -*- coding: utf-8 -*- + +"""BiliDriveEx 哔哩哔哩云 Ex +https://github.com/apachecn/BiliDriveEx""" + +__author__ = "ApacheCN" +__email__ = "apachecn@163.com" +__license__ = "SATA" +__version__ = "2019.01.22" diff --git a/BiliDrive/__main__.py b/BiliDriveEx/__main__.py similarity index 100% rename from BiliDrive/__main__.py rename to BiliDriveEx/__main__.py diff --git a/BiliDrive/bilibili.py b/BiliDriveEx/bilibili.py similarity index 100% rename from BiliDrive/bilibili.py rename to BiliDriveEx/bilibili.py diff --git a/BiliDrive/encoder.py b/BiliDriveEx/encoder.py similarity index 100% rename from BiliDrive/encoder.py rename to BiliDriveEx/encoder.py diff --git a/LICENSE b/LICENSE index a1c41f8..462a359 100644 --- a/LICENSE +++ b/LICENSE @@ -1,8 +1,8 @@ The Star And Thank Author License (SATA) -Copyright © 2019 Hsury(i@hsury.com) +Copyright © 2019 ApacheCN(apachecn@163.com) -Project Url: https://github.com/Hsury/BiliDrive +Project Url: https://github.com/apachecn/BiliDriveEx Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/setup.py b/setup.py index 9be6cce..655b8b4 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- import setuptools -import BiliDrive +import BiliDriveEx with open("README.md", "r", encoding="utf-8") as fh: long_description = fh.read() @@ -11,11 +11,11 @@ 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__, + 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", @@ -30,7 +30,7 @@ setuptools.setup( "Topic :: Internet :: WWW/HTTP", "Topic :: Utilities", ], - description="☁️ 哔哩哔哩云,支持任意文件的全速上传与下载", + description="☁️ 哔哩哔哩云 Ex,支持任意文件的全速上传与下载", long_description=long_description, long_description_content_type="text/markdown", keywords=[ @@ -50,7 +50,7 @@ setuptools.setup( python_requires=">=3.6", entry_points={ 'console_scripts': [ - "BiliDrive=BiliDrive.__main__:main", + "bdex=BiliDriveEx.__main__:main", ], }, packages=setuptools.find_packages(), -- GitLab