mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-04-25 12:31:07 -05:00
15 lines
297 B
Python
15 lines
297 B
Python
import os.path
|
|
|
|
from supybot.setup import plugin_setup
|
|
|
|
REQUIREMENTS_PATH = os.path.join(os.path.dirname(__file__), "requirements.txt")
|
|
|
|
with open(REQUIREMENTS_PATH, "rt") as fd:
|
|
install_requires = fd.read().split()
|
|
|
|
plugin_setup(
|
|
'SpiffyTitles',
|
|
install_requires=install_requires,
|
|
)
|
|
|