-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
23 lines (22 loc) · 861 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
from setuptools import setup, find_packages
setup(
name='MeetMa', # Package name in lowercase
version='0.0.1',
packages=find_packages(where='.'), # Automatically find packages
install_requires=[
'PyQt6',
'beautifulsoup4',
'googletrans',
'requests',
'selenium'
],
entry_points={
'console_scripts': [
'meetma=src.main:main', # Adjust based on your actual structure
],
},
author='Siyamak Abasnezhad, Mahan Shirsavar',
author_email='pydevcasts@gmail.com',
description='Google Meet Bot is a Python application that automates participation in Google Meet meetings by extracting real-time subtitles, translating them, and detecting questions, enhancing users online meeting experience.',
url='https://github.com/pydevcasts/MeetMa', # Your GitHub URL
)