-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
46 lines (43 loc) · 1.47 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
from setuptools import setup
try:
from m2r import parse_from_file
long_description = parse_from_file('README.md')
except:
long_description = ''
setup(
name='PySelenium',
license='MIT License',
packages=['pyselenium'],
version='1.0.2',
description='A wrapper for Selenium to allow easy development of automated tests for the web',
author='Felipe Fiali de Sá',
author_email='[email protected]',
url='https://github.com/felipefiali/PySelenium',
download_url='https://github.com/felipefiali/PySelenium/archive/1.0.2.tar.gz',
keywords=['testing', 'test-automation', 'selenium', 'web-automation'],
long_description=long_description,
platforms=[
'Windows',
'Linux',
'MacOS'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities'
],
install_requires=[
"selenium"
]
)