-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (27 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as fh:
requirements = fh.read()
setup(
name="lyricy",
version="1.4",
author="Yogeshwaran R",
author_email="yogeshin247@gmail.com",
description="A command line lyrics utility tool which \
search and add lyrics to your offline songs.",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/yogeshwaran01/lyricy",
download_url="https://github.com/yogeshwaran01/lyricy/archive/master.zip",
packages=find_packages(),
entry_points={"console_scripts": ["lyricy=lyricy.cli:cli"]},
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
keywords="python package lyrics lrc yogeshwaran01 songs",
install_requires=requirements,
)