-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
27 lines (24 loc) · 885 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
26
27
import setuptools
import swaglyrics_backend
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="swaglyrics_backend",
version=swaglyrics_backend.__version__,
author="Aadi Bajpai",
description="Server side code to communicate with SwagLyrics, manage unsupported songs and make an issue on the "
"main repo when the program encounters a song it can't fetch lyrics for.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/SwagLyrics/swaglyrics-backend",
packages=['swaglyrics_backend'],
install_requires=['flask', 'Flask-Limiter', 'GitPython', 'flask_sqlalchemy', 'swaglyrics', 'requests'],
extras_require={
'dev': [
'pytest',
'pytest-cov',
'codecov',
'mypy'
]
},
)