45 lines
1.3 KiB
Python
45 lines
1.3 KiB
Python
|
import setuptools
|
||
|
from os import path
|
||
|
|
||
|
here = path.abspath(path.dirname(__file__))
|
||
|
|
||
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
||
|
long_description = f.read()
|
||
|
|
||
|
with open(path.join(here, 'VERSION'), encoding='utf-8') as f:
|
||
|
version = f.read()
|
||
|
|
||
|
|
||
|
setuptools.setup(
|
||
|
name="negromate.karaoke",
|
||
|
version=version,
|
||
|
author="Ales (Shagi) Zabala Alava",
|
||
|
author_email="shagi@gisa-elkartea.org",
|
||
|
url="http://negromate.ddns.net",
|
||
|
description="Player for NegroMate karaoke parties",
|
||
|
long_description=long_description,
|
||
|
long_description_content_type='text/markdown',
|
||
|
packages=setuptools.find_namespace_packages(include=['negromate.*']),
|
||
|
classifiers=[
|
||
|
"Development Status :: 5 - Production/Stable",
|
||
|
"Environment :: X11 Applications",
|
||
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"Topic :: Games/Entertainment",
|
||
|
"Topic :: Multimedia :: Graphics :: Presentation",
|
||
|
],
|
||
|
python_requires=">=3.4",
|
||
|
install_requires=['kivy'],
|
||
|
package_data={
|
||
|
'negromate.karaoke': [
|
||
|
'images/*',
|
||
|
'kv_templates/*',
|
||
|
]
|
||
|
},
|
||
|
entry_points={
|
||
|
'console_scripts': [
|
||
|
'negromate-karaoke=negromate.karaoke.karaoke:main',
|
||
|
],
|
||
|
},
|
||
|
)
|