diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index d976549..e9a207d 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.x' + python-version: '3.10.19' - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/client_pyrogram.py b/examples/client_pyrogram.py similarity index 100% rename from client_pyrogram.py rename to examples/client_pyrogram.py diff --git a/userbot_auth.py b/examples/userbot_auth.py similarity index 100% rename from userbot_auth.py rename to examples/userbot_auth.py diff --git a/setup.py b/setup.py index df8addf..316130e 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def read(fname, version=False): setuptools.setup( name="userbot_auth", packages=setuptools.find_packages(), - version=read("userbot-auth/__version__.py", version=True), + version=read("userbot_auth/__version__.py", version=True), license="MIT", description="Ryzenth UBT | Enterprise Security Framework.", long_description=read("README.md"), @@ -24,7 +24,7 @@ def read(fname, version=False): author="TeamKillerX", project_urls={ "Source": "https://github.com/TeamKillerX/Userbot-Auth/", - "Issues": "https://github.com/TeamKillerX/Userbot-Auth/issue", + "Issues": "https://github.com/TeamKillerX/Userbot-Auth/issues", }, keywords=[ "Userbot-Auth-API", @@ -32,7 +32,6 @@ def read(fname, version=False): ], install_requires=[ "requests", - "typing", "aiohttp" ], classifiers=[