forked from tebelorg/RPA-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 1.06 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
from setuptools import setup
setup(
name='tagui',
version='1.17.0',
py_modules=['tagui'],
author='Ken Soh',
author_email='[email protected]',
license='Apache License 2.0',
url='https://github.com/tebelorg/TagUI-Python',
description='TagUI for Python is a Python package for digital process automation (RPA)',
long_description='TagUI for Python homepage - https://github.com/tebelorg/TagUI-Python',
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)