Upload New File
This commit is contained in:
parent
c07fe77d0c
commit
e6595fbe0e
1 changed files with 34 additions and 0 deletions
34
Dice/setup.py
Normal file
34
Dice/setup.py
Normal 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',
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue