Files
pseudbot/setup.py
T
Andrew Rogers 9071065310 added new fake Discord screenshot generator
Other memes:
- SoyPhone

Utility functions added:
- Square aspect ratio cropper (square_crop)
- Circle profile pic maker (circle_pfp)
- PIL alpha_composite helper (alpha_comp_prep)
- Text wrapping and bounding helpers
- Tuple adder (tuple_add)
- iPhone timestamp generator for top bar (get_iphone_time_s)

Also added:
- Meme abstract base class (in pseudbot/meme/abc.py)
- Post styling information (in pseudbot/meme/post_styles.py)
2021-12-07 16:51:16 -06:00

24 lines
588 B
Python

from setuptools import setup
try:
from pip import main as pipmain
except ImportError:
from pip._internal import main as pipmain
# install_requires sucks, I don't know why and I really
# don't care, so I do this:
pipmain(["install", "-r", "requirements.txt"])
scripts = ["scripts/pseudbot", "scripts/fetch-media"]
setup(
name="pseudbot",
version="0.1",
author="Andrew Rogers",
description="Rick and Morty copypasta bot",
author_email="tuxlovesyou@gmail.com",
packages=["pseudbot", "pseudbot.meme"],
include_package_data=True,
scripts=scripts,
)