comp/setup.py

30 lines
1.1 KiB
Python
Raw Normal View History

2014-08-10 23:25:25 +02:00
#!/usr/bin/env python3
2017-03-20 14:49:11 +01:00
from distutils.core import setup
from sys import prefix
2017-03-20 14:49:11 +01:00
with open('README.rst') as f:
long_description = f.read()
setup(name='comp', version='0.1.1a2',
url='https://github.com/McSinyx/comp',
description=('Curses Online Media Player'),
2017-03-20 14:49:11 +01:00
long_description=long_description,
author='Nguyễn Gia Phong', author_email='vn.mcsinyx@gmail.com',
py_modules=['mpv'], scripts=['comp'],
data_files=[
('{}/share/locale/vi/LC_MESSAGES/'.format(prefix), ['locale/vi/LC_MESSAGES/comp.mo']),
('/etc/comp', ['settings.ini'])
], classifiers=[
2017-04-03 15:52:59 +02:00
'Development Status :: 3 - Alpha',
2017-03-26 10:26:37 +02:00
'Environment :: Console :: Curses',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Natural Language :: Vietnamese',
2017-03-26 10:26:37 +02:00
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Sound/Audio :: Players',
'Topic :: Multimedia :: Video :: Display'
], platforms=['POSIX'], license='AGPLv3')