-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
58 lines (54 loc) · 1.72 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from distutils.util import convert_path
main_ns = {}
ver_path = convert_path('tir/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
setup(
description='Test Interface Robot',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='tir_engpro',
url='https://github.com/totvs/tir',
download_url='https://github.com/totvs/tir',
project_urls={
'Script Samples': 'https://github.com/totvs/tir-script-samples'
},
version=main_ns['__version__'],
license='MIT',
keywords='test automation selenium tir totvs protheus framework',
classifiers=[
'Environment :: Web Environment',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Documentation :: Sphinx',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing'
],
install_requires=[
'beautifulsoup4==4.12.2',
'numpy==1.21.6',
'pandas==1.0.1',
'python-dateutil==2.8.2',
'pytz==2023.3',
'selenium==3.8.0',
'six==1.16.0',
'enum34==1.1.10',
'requests==2.29.0',
'pyodbc==4.0.39',
'psutil==5.9.5',
'lxml==4.6.5',
'opencv-python==4.8.1.78',
'webdriver-manager'
],
packages=find_packages(),
scripts=[],
name='tir_framework',
include_package_data=True
)