-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
25 lines (23 loc) · 863 Bytes
/
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
import setuptools
import SwagLyricsBot
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="SwagLyricsBot",
version=SwagLyricsBot.__version__,
author="Krzysztof Krysiński",
author_email="krysinskikrzysztof123@gmail.com",
description="A automatic lyrics fetching discord bot.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/flabbet/SwagLyrics-discord-bot",
packages=["SwagLyricsBot"],
install_requires=["swaglyrics", "discord", "env_file"],
extras_require={"dev": ["pytest", "codecov", "pytest-cov"]},
keywords="discord bot swaglyrics lyrics",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)