mirror of
https://github.com/pseudbot/pseudbot.git
synced 2026-05-26 14:05:07 +00:00
9071065310
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)
24 lines
588 B
Python
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,
|
|
)
|