-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
472dfa5
commit 63c5a0d
Showing
1 changed file
with
58 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,61 @@ | ||
from distutils.core import setup | ||
|
||
readme = """ | ||
# discord.py-self_embed | ||
A way for selfbots to send embeds again. | ||
It uses Rauf's embed generator so its a web embed. | ||
### Install | ||
> ```bash | ||
> $ pip install discord.py-self-embed | ||
> ``` | ||
### Example | ||
> ```python | ||
> import discord_self_embed | ||
> | ||
> embed = discord_self_embed.Embed("discord.py-self_embed", | ||
> description="A way for selfbots to send embeds again.", | ||
> colour="ff0000", | ||
> url="https://github.com/bentettmar/discord.py-self_embed" | ||
> ) | ||
> embed.set_author("Ben Tettmar") | ||
> | ||
> url = embed.generate_url(hide_url=True) # You can also convert the embed to a string. | ||
> print(url) # The url will be put in your ctx.send() content. | ||
> ``` | ||
### Limitations | ||
> Because the embeds are web embeds there are limitations. | ||
> - No footers. | ||
> - No author urls. | ||
> - Max 350 character description. | ||
""" | ||
|
||
setup( | ||
name = 'discord.py-self_embed', | ||
packages = ['discord_self_embed'], | ||
version = '1.0.0', | ||
license='MIT', | ||
description = 'A way for selfbots to send embeds again.', | ||
author = 'Ben Tettmar', | ||
author_email = 'hello@benny.fun', | ||
url = 'https://github.com/bentettmar/discord.py-self_embed', | ||
download_url = 'https://github.com/bentettmar/discord.py-self_embed/archive/refs/tags/1.0.0.tar.gz', | ||
keywords = ['discord', 'embed', 'selfbot', "discord embed", "embed discord", "discord selfbot embed", "embed selfbot discord"], | ||
install_requires=["requests"], | ||
classifiers=[ | ||
'Development Status :: 3 - Stable', | ||
'Intended Audience :: Developers', | ||
'Topic :: Software Development :: Build Tools', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
) | ||
name='discord.py-self_embed', | ||
packages=['discord_self_embed'], | ||
version='1.0.1', | ||
license='MIT', | ||
description='A way for selfbots to send embeds again.', | ||
author='Ben Tettmar', | ||
author_email='hello@benny.fun', | ||
url='https://github.com/bentettmar/discord.py-self_embed', | ||
download_url='https://github.com/bentettmar/discord.py-self_embed/archive/refs/tags/1.0.0.tar.gz', | ||
keywords=['discord', 'embed', 'selfbot', "discord embed", | ||
"embed discord", "discord selfbot embed", "embed selfbot discord"], | ||
install_requires=[], | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: MIT License', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
], | ||
long_description=readme, | ||
long_description_content_type='text/markdown' | ||
) |