41 lines
1.2 KiB
Python
41 lines
1.2 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.songs",
|
|
version=version,
|
|
author="Ales (Shagi) Zabala Alava",
|
|
author_email="shagi@gisa-elkartea.org",
|
|
url="http://negromate.rocks",
|
|
description="NegroMate karaoke song database library",
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
packages=setuptools.find_namespace_packages(include=['negromate.*']),
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Games/Entertainment",
|
|
],
|
|
python_requires=">=3.4",
|
|
install_requires=[
|
|
"webvtt-py",
|
|
"asstosrt==0.1.6",
|
|
"srt==1.6.0",
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'negromate-songs=negromate.songs.command:main',
|
|
],
|
|
},
|
|
)
|