34 lines
1,017 B
Python
34 lines
1,017 B
Python
#!/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',
|
|
)
|