2017-12-30 03:22:12 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
2018-01-30 15:31:22 +02:00
|
|
|
from clay.meta import VERSION
|
2017-12-30 03:22:12 +02:00
|
|
|
|
|
|
|
setup(
|
2018-01-23 23:00:51 +02:00
|
|
|
name='clay-player',
|
2018-01-30 15:31:22 +02:00
|
|
|
version=VERSION,
|
2017-12-30 03:22:12 +02:00
|
|
|
description='Command Line Player for Google Play Music',
|
2018-06-21 17:19:11 +03:00
|
|
|
long_description=open('README.md', 'r').read(),
|
|
|
|
long_description_content_type='text/markdown',
|
2017-12-30 03:22:12 +02:00
|
|
|
author='Andrew Dunai',
|
|
|
|
author_email='a@dun.ai',
|
|
|
|
url='https://github.com/and3rson/clay',
|
2018-01-31 18:50:36 +10:00
|
|
|
install_requires=[
|
2018-01-06 14:04:23 +02:00
|
|
|
'gmusicapi',
|
|
|
|
'PyYAML',
|
2018-01-30 16:26:20 +02:00
|
|
|
'urwid',
|
|
|
|
'codename'
|
2018-01-06 14:04:23 +02:00
|
|
|
],
|
2017-12-30 03:22:12 +02:00
|
|
|
packages=find_packages(),
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
2018-01-02 11:26:55 +02:00
|
|
|
'clay=clay.app:main'
|
2017-12-30 03:22:12 +02:00
|
|
|
]
|
2018-02-15 21:11:40 +01:00
|
|
|
},
|
|
|
|
package_data={
|
2018-03-09 22:00:29 +01:00
|
|
|
'clay': ['config.yaml', 'colours.yaml'],
|
2018-02-15 21:11:40 +01:00
|
|
|
},
|
2017-12-30 03:22:12 +02:00
|
|
|
)
|