-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 931 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import setuptools
with open('README.md', 'r', encoding='utf-8') as f_desc:
long_description = f_desc.read()
setuptools.setup(
name='rubysubs',
version='0.1.4',
author='Bent',
author_email='[email protected]',
description='Tool/library to add ruby text to subtitles',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RicBent/rubysubs',
packages=['rubysubs'],
entry_points={
'console_scripts': [
'rubysubs = rubysubs.__main__:main',
],
},
install_requires=[
'cchardet;python_version<\'3.10\'',
'faust-cchardet;python_version>=\'3.10\'',
'pysubs2',
'PyQt5'
],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
],
)