-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="nbsplayer",
version="1.0.0",
description="A discord.py cog that adds Minecraft note block song playback functionality to your bot.",
long_description=long_description,
long_description_content_type='text/markdown',
py_modules=["nbsplayer"],
package_dir={'': "src"},
url="https://github.com/FaddyManatee/nbsplayer",
author="FaddyManatee",
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Typing :: Typed',
]
)