-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 729 Bytes
/
setup.py
File metadata and controls
38 lines (36 loc) · 729 Bytes
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
31
32
33
34
35
36
37
38
from setuptools import setup, find_packages
requires = [
'Brotli'
'certifi'
'charset-normalizer'
'click'
'Flask'
'gunicorn'
'idna'
'importlib-metadata'
'itsdangerous'
'Jinja2'
'MarkupSafe'
'mutagen'
'pycryptodomex'
'requests'
'six'
'spotipy'
'urllib3'
'websockets'
'Werkzeug'
'youtube-search'
'yt-dlp'
'zipp'
]
setup(
name='TrackDown',
version='1.0',
description='An application that gets your Spotify songs and downloads the YoutubeMP3 version',
author='Het Patel',
author_email='het1613@gmail.com',
keywords='web flask',
packages=find_packages(),
include_package_data=True,
install_requires=requires
)