mirror of
https://github.com/pseudbot/pseudbot.git
synced 2026-06-12 11:29:02 +00:00
24 lines
546 B
Python
24 lines
546 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"]
|
|
|
|
setup(
|
|
name="pseudbot",
|
|
version="0.1",
|
|
author="Albert Sanchez",
|
|
description="Rick and Morty copypasta bot",
|
|
author_email="singletons@goat.si",
|
|
packages=["pseudbot"],
|
|
include_package_data=True,
|
|
scripts=scripts,
|
|
)
|