clay/setup.py

27 lines
546 B
Python
Raw Normal View History

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',
author='Andrew Dunai',
author_email='a@dun.ai',
url='https://github.com/and3rson/clay',
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
]
}
)