forked from Alireza-Gerami/SubtitleTranslator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.17 KB
/
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
33
34
35
36
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='subtrans',
version='1.0.3',
py_modules=['SubtitleTranslator'],
long_description=long_description,
long_description_content_type='text/markdown',
packages=['SubtitleTranslator'],
url='https://github.com/Alireza-Gerami/SubtitleTranslator',
download_url='https://github.com/Alireza-Gerami/SubtitleTranslator/archive/main.tar.gz',
install_requires=[
'click~=7.1.2',
'pysrt~=1.1.2',
'googletrans~=4.0.0rc1',
'tqdm~=4.54.1',
],
license='MIT',
author='Alireza Gerami',
author_email='[email protected]',
description='Python Subtitle Translator as a command-line tool',
entry_points='''
[console_scripts]
subtrans=SubtitleTranslator.SubtitleTranslator:cli
''',
keywords=['TRANSLATE', 'TOOLS', 'SUBTITLE'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
],
)