-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 725 Bytes
/
setup.py
File metadata and controls
16 lines (15 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name='ytmusiclibtracker',
url='https://github.com/czifumasa/ytmusic-lib-tracker',
author='Łukasz Lenart',
author_email='lukasz.lenart912@gmail.com',
packages=['ytmusiclibtracker'],
install_requires=['ytmusicapi >=1.10.2', 'unidecode', 'pyperclip >= 1.8.2'],
version='1.7',
license='MIT',
description='Useful tools for youtube music. Exporting library to csv, tracking changes in library, summary of transfer from GPM',
long_description=open('README.md').read(),
entry_points={'console_scripts': ['ytmlt-export=ytmusiclibtracker.__main__:export',
'ytmlt-changelog=ytmusiclibtracker.__main__:changelog']}
)