comp/setup.py

37 lines
1.2 KiB
Python
Raw Permalink Normal View History

2014-08-10 23:25:25 +02:00
#!/usr/bin/env python3
from setuptools import setup
2017-03-20 14:49:11 +01:00
with open('README.rst') as f:
long_description = f.read()
2017-05-15 06:02:56 +02:00
setup(
name='comp',
version='0.4.6',
2017-06-10 17:14:15 +02:00
description=('Curses Omni Media Player'),
2017-05-15 06:02:56 +02:00
long_description=long_description,
url='https://github.com/McSinyx/comp',
author='Nguyễn Gia Phong',
author_email='vn.mcsinyx@gmail.com',
license='AGPLv3+',
2017-05-15 06:02:56 +02:00
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Natural Language :: Vietnamese',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Multimedia :: Sound/Audio :: Players',
2017-06-10 17:14:15 +02:00
'Topic :: Multimedia :: Video :: Display'],
2017-05-15 06:02:56 +02:00
keywords='youtube-dl mpv-wrapper curses console-application multimedia',
2017-06-10 17:14:15 +02:00
packages=['omp'],
install_requires=['python-mpv', 'youtube-dl'],
2017-06-25 12:38:19 +02:00
python_requires='>=3.5',
2017-06-10 17:14:15 +02:00
package_data={'omp': ['locale/*/LC_MESSAGES/omp.mo']},
2017-06-25 12:38:19 +02:00
data_files=[('share/man/man1', ['doc/comp.1'])],
2017-05-15 06:02:56 +02:00
scripts=['comp'],
2017-06-10 17:14:15 +02:00
platforms=['POSIX'])