-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (24 loc) · 820 Bytes
/
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
# pylint: disable=missing-docstring
from setuptools import setup
setup(
name='pyscc',
description='py-component-controller is an opinionated framework for structuring selenium test suites. This project depends on the pyselenium-js project.',
version='0.2.6',
url='https://neetjn.github.io/py-component-controller/',
author='John Nolette',
author_email='[email protected]',
license='Apache2',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6'
],
install_requires=[
'selenium==3.12.0',
'pyseleniumjs==1.3.8',
'six'
],
packages=['pyscc']
)