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.
30 lines
1.1 KiB
30 lines
1.1 KiB
5 years ago
|
from setuptools import setup, find_packages
|
||
5 years ago
|
import Version
|
||
|
def LongDescriptionRead():
|
||
5 years ago
|
with open('pyOpenRPA/README.md') as f:
|
||
5 years ago
|
return f.read()
|
||
5 years ago
|
|
||
5 years ago
|
#Do pyOpenRPA package __init__ __version__ update
|
||
|
Version.pyOpenRPAVersionUpdate("..","pyOpenRPA/__init__.py")
|
||
|
|
||
5 years ago
|
setup(name='pyOpenRPA',
|
||
5 years ago
|
version=Version.Get(".."),
|
||
5 years ago
|
description='First open source RPA platform for business',
|
||
5 years ago
|
long_description=LongDescriptionRead(),
|
||
5 years ago
|
long_description_content_type='text/markdown',
|
||
5 years ago
|
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=[
|
||
5 years ago
|
'pywinauto>=0.6.6','WMI>=1.4.9','pillow>=6.0.0','keyboard>=0.13.3','pyautogui>=0.9.44','pywin32>=224'
|
||
5 years ago
|
],
|
||
|
include_package_data=True,
|
||
|
zip_safe=False)
|