You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
from setuptools import setup , find_packages
setup ( name = ' pyOpenRPA ' ,
version = ' 1.0.3 ' ,
description = ' First open source RPA platform for business ' ,
long_description = ' The OpenRPA - first open source RPA platform for business (by Ivan Maslov). Full manual you can find at: https://gitlab.com/UnicodeLabs/OpenRPA/wikis/home ' ,
classifiers = [
' Development Status :: 3 - Alpha ' ,
' License :: OSI Approved :: MIT License ' ,
' Programming Language :: Python :: 3.7 ' ,
] ,
keywords = ' OpenRPA RPA Robot Automation Robotization ' ,
url = ' https://gitlab.com/UnicodeLabs/OpenRPA ' ,
author = ' Ivan Maslov ' ,
author_email = ' Ivan.Maslov@unicodelabs.ru ' ,
license = ' MIT ' ,
packages = find_packages ( ) ,
install_requires = [
' pywinauto>=0.6.6 ' , ' WMI>=1.4.9 ' , ' pillow>=6.0.0 ' , ' keyboard>=0.13.3 ' , ' pyautogui>=0.9.44 ' , ' pywin32>=224 '
] ,
include_package_data = True ,
zip_safe = False )