-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 826 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 826 Bytes
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
from setuptools import setup, find_packages
setup(
name='PyTransLingo',
version='1.0.0',
author='Hari Prasath .S',
author_email='harishreehp80@gmail.com',
license='MIT',
description='PyTransLingo is a command-line translation and text-to-speech tool. Translate text between languages, get the meaning of translated text, perform Google searches, and listen to search results using text-to-speech.Run "PyTransLingo" in the terminal or command prompt to use the pip. ',
packages=find_packages(),
entry_points={
'console_scripts': [
'PyTransLingo = PyTransLingo.translator_menu:translator_menu',
],
},
install_requires=[
'pyttsx3',
'translate',
'PyDictionary',
'requests',
'beautifulsoup4',
'tabulate',
],
)