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', +)