clay/setup.py
Andrew Dunai 9319cd2534 setup.py
2018-01-06 14:04:23 +02:00

24 lines
487 B
Python
Executable file

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='Clay',
version='0.1',
description='Command Line Player for Google Play Music',
author='Andrew Dunai',
author_email='a@dun.ai',
url='https://github.com/and3rson/clay',
install_required=[
'gmusicapi',
'PyYAML',
'urwid'
],
packages=find_packages(),
entry_points={
'console_scripts': [
'clay=clay.app:main'
]
}
)