From e6595fbe0e4877ed2d23d1d412adabbbec26e8ce Mon Sep 17 00:00:00 2001 From: Groupr Date: Sat, 13 Sep 2025 15:54:33 +0000 Subject: [PATCH] Upload New File --- Dice/setup.py | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Dice/setup.py diff --git a/Dice/setup.py b/Dice/setup.py new file mode 100644 index 0000000..cac8f84 --- /dev/null +++ b/Dice/setup.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +""" +Setup for the Dice plugin for Unturf Discord Bot. +""" + +from setuptools import setup, find_packages + +setup( + name='unturf-dice-plugin', + version='1.0.0', + packages=find_packages(), + install_requires=[ + 'discord.py', + ], + entry_points={ + 'unturf_discord.plugins': [ + 'dice = Dice:DicePlugin', + ], + }, + description='Dice rolling plugin for Unturf Discord Bot', + long_description='Adds dice rolling functionality to the Unturf Discord Bot', + long_description_content_type='text/markdown', + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: End Users/Desktop', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', + ], + python_requires='>=3.8', +)