mirror of
https://github.com/vale981/clay
synced 2025-03-04 09:11:37 -05:00
30 lines
724 B
Python
Executable file
30 lines
724 B
Python
Executable file
#!/usr/bin/env python
|
|
|
|
from setuptools import setup, find_packages
|
|
from clay.meta import VERSION
|
|
|
|
setup(
|
|
name='clay-player',
|
|
version=VERSION,
|
|
description='Command Line Player for Google Play Music',
|
|
long_description=open('README.md', 'r').read(),
|
|
long_description_content_type='text/markdown',
|
|
author='Andrew Dunai',
|
|
author_email='a@dun.ai',
|
|
url='https://github.com/and3rson/clay',
|
|
install_requires=[
|
|
'gmusicapi',
|
|
'PyYAML',
|
|
'urwid',
|
|
'codename'
|
|
],
|
|
packages=find_packages(),
|
|
entry_points={
|
|
'console_scripts': [
|
|
'clay=clay.app:main'
|
|
]
|
|
},
|
|
package_data={
|
|
'clay': ['config.yaml', 'colours.yaml'],
|
|
},
|
|
)
|