forked from totvs/tir
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (52 loc) · 1.59 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
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='TOTVS 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',
'numpy',
'pandas==1.0.1',
'python-dateutil',
'pytz',
'selenium==3.8.0',
'six',
'enum34',
'requests',
'pyodbc',
'psutil',
'lxml==4.6.3'
],
packages=find_packages(),
scripts=[],
name='tir_framework',
include_package_data=True
)