From 3cab5a65c4aa088562607f73692a4b344d3abf85 Mon Sep 17 00:00:00 2001 From: Cam <yulinfeng000@gmail.com> Date: Mon, 30 Jan 2023 22:51:41 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E4=B8=BA=E7=94=A8poetry=E7=AE=A1?= =?UTF-8?q?=E7=90=86=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- requirements.txt | 45 --------------------------------------------- setup.py | 20 -------------------- 2 files changed, 65 deletions(-) delete mode 100644 requirements.txt delete mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 60d8fa6..0000000 --- a/requirements.txt +++ /dev/null @@ -1,45 +0,0 @@ -aiohttp==4.0.0a1 -anyio==3.6.2 -APScheduler==3.9.1 -async-timeout==3.0.1 -attrs==22.1.0 -bleach==5.0.1 --e git+https://github.com/yulinfeng000/blive.git@2ddb6ae327eac85d171bf41a26ab3d8bee56f04a#egg=blive -Brotli==1.0.9 -certifi==2022.9.24 -cffi==1.15.1 -chardet==3.0.4 -charset-normalizer==2.1.1 -commonmark==0.9.1 -cryptography==38.0.4 -docutils==0.19 -idna==3.4 -importlib-metadata==5.1.0 -jaraco.classes==3.2.3 -jeepney==0.8.0 -keyring==23.11.0 -more-itertools==9.0.0 -multidict==4.7.6 -pkginfo==1.8.3 -pycparser==2.21 -pyee==9.0.4 -Pygments==2.13.0 -pytz==2022.6 -pytz-deprecation-shim==0.1.0.post0 -readme-renderer==37.3 -requests==2.28.1 -requests-toolbelt==0.10.1 -rfc3986==2.0.0 -rich==12.6.0 -SecretStorage==3.3.3 -six==1.16.0 -sniffio==1.3.0 -tenacity==8.1.0 -twine==4.0.1 -typing_extensions==4.4.0 -tzdata==2022.6 -tzlocal==4.2 -urllib3==1.26.13 -webencodings==0.5.1 -yarl==1.8.1 -zipp==3.11.0 diff --git a/setup.py b/setup.py deleted file mode 100644 index dcc20c8..0000000 --- a/setup.py +++ /dev/null @@ -1,20 +0,0 @@ -import setuptools - -with open("./README.md", "r") as f: - description = f.read() - -setuptools.setup( - name="blive", - version="0.1.2", - author="cam", - author_email="yulinfeng000@gmail.com", - long_description=description, - long_description_content_type="text/markdown", - url="https://github.com/yulinfeng000/blive", - packages=setuptools.find_packages(), - classifiers=[ - "Programming Language :: Python :: 3", - "License :: OSI Approved :: MIT License", - ], - install_requires=["aiohttp","requests","APScheduler>=3.9.1","brotli","pyee"] -)