Skip to content

Commit

Permalink
Add readme to pypi page.
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyscripts authored Mar 29, 2022
1 parent 472dfa5 commit 63c5a0d
Showing 1 changed file with 58 additions and 23 deletions.
81 changes: 58 additions & 23 deletions setup.py
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'
)

0 comments on commit 63c5a0d

Please sign in to comment.