Skip to content

Commit 5eac2ad

Browse files
committed
feat!: set new package name
1 parent f0158b1 commit 5eac2ad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

interactions/ext/api/__init__.py renamed to interactions/ext/fastapi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
version=version,
2121
description="Build an API for your bot with FastAPI",
2222
link="https://github.com/Damego/interactions-fastapi",
23-
packages=["interactions.ext.api"],
23+
packages=["interactions.ext.fastapi"],
2424
requirements=[
2525
"discord-py-interactions",
2626
"fastapi",
File renamed without changes.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
AUTHOR_EMAIL = "[email protected]"
88
DESCRIPTION = "Build an API for your bot with FastAPI"
99
PROJECT_NAME = "interactions-fastapi"
10-
MAIN_PACKAGE_NAME = "interaction.ext.api"
10+
MAIN_PACKAGE_NAME = "interaction.ext.fastapi"
1111
URL = "https://github.com/Damego/interactions-fastapi"
1212

1313
with open("README.md", "r", encoding="utf-8") as f:
@@ -29,7 +29,7 @@
2929
long_description=README,
3030
long_description_content_type="text/markdown",
3131
url=URL,
32-
packages=["interactions.ext.api"],
32+
packages=[MAIN_PACKAGE_NAME],
3333
python_requires=">=3.8",
3434
classifiers=[
3535
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)