-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
60 lines (54 loc) · 1.94 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
from distutils.core import setup
readme = """
# discord.py-self_embed
A way for selfbots to send embeds again.
It uses [Benny's embed generator](https://benny.fun/api/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="FFBB00"
> )
> embed.set_author("Benny")
> embed.set_image("https://raw.githubusercontent.com/bennyscripts/ghost/refs/heads/main/ghost.png", big=False)
>
> 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.
> - Max 350 character description.
"""
setup(
name='discord.py-self_embed',
packages=['discord_self_embed', 'discord_self_embed.utils'],
version='1.0.9',
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/bennyscripts/discord.py-self_embed/archive/refs/tags/1.0.9.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'
)