Upload New File

This commit is contained in:
Groupr 2025-09-13 15:54:33 +00:00
parent c07fe77d0c
commit e6595fbe0e

34
Dice/setup.py Normal file
View file

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