forked from nateshmbhat/webbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (26 loc) · 1.1 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
import platform
from setuptools import setup
with open('README.rst' , 'r' , encoding='utf-8') as f:
long_description = f.read()
setup(
name='webbot',
packages = ['webbot','webbot.drivers'] ,
version = '0.0.9',
long_description = long_description ,
install_requires = ['selenium'] ,
package_data = {'' : [r'drivers/*']} ,
description = 'Web Browser automation library for python with more features and simpler api than selenium' ,
author = 'Natesh M Bhat' ,
url = 'https://github.com/nateshmbhat/webbot',
author_email = '[email protected]' ,
keywords=['webbot', 'selenium' , 'autoweb','automate' , 'automation' ,'web' , 'autoweb' , 'auto' , 'pyauto', 'pyautogui'],
classifiers = [
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python' ]
)