forked from axe-selenium-python/axe-selenium-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 1.08 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
from setuptools import find_packages, setup
def readme():
with open('./README.rst') as f:
readme = f.read()
with open('./CHANGELOG.rst') as f:
log = f.read()
return readme + '\n\n' + log
setup(name='axe-selenium-python',
version='2.0.0',
description='Python library to integrate axe and selenium for web \
accessibility testing.',
long_description=readme(),
url='http://github.com/kimberlythegeek/axe-selenium-python',
author='Kimberly Sereduck',
author_email='[email protected]',
packages=find_packages(),
package_data={'axe_selenium_python': ['src/axe.min.js'], },
install_requires=[
'pytest-selenium>=1.10.0',
'pytest>=3.0'
],
license='Mozilla Public License 2.0 (MPL 2.0)',
keywords='axe-core selenium pytest-selenium accessibility automation mozilla')