-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (22 loc) · 809 Bytes
/
setup.py
File metadata and controls
22 lines (22 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
# -*- coding: utf-8 -*-"
from setuptools import setup, find_packages
from tools.tools import writetxt
setup(
name='garajeVirtual',
version='1.0.0',
license='GPLv3',
author_email='unloquer@gmail.com',
author='Unloquer',
description='script for generate a virtual meeting to linking the physical space with virtual space ',
url='',
packages=find_packages(),
install_requires=['python-telegram-bot', 'selenium'],
include_package_data=True,
)
#create files
PATH = "files/"
writetxt(PATH+"auth.txt","here you gmail account for meets")
writetxt(PATH+"token.txt","telegram bot token here")
writetxt(PATH+"meetactual.txt")
print("remeber add you private data telegram bot token and you google account\n\ttelegram token\t->files/token.txt\n\tgmail account\t->files/auth.txt")