a big-brained Twitter bot that replies to mentions with Rick and Morty quotes
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
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="Albert Sanchez",
|
|
|
|
description="Rick and Morty copypasta bot",
|
|
|
|
author_email="singletons@goat.si",
|
|
|
|
packages=["pseudbot", "pseudbot.meme"],
|
|
|
|
include_package_data=True,
|
|
|
|
scripts=scripts,
|
|
|
|
)
|