-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (39 loc) · 1.4 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
# -*- coding: utf-8 -*-
from setuptools import setup
import os
ROOT = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(ROOT, 'README.md')
try:
long_description = open(README).read()
except IOError:
long_description = None
setup(
name='selenium-sunbro',
version='0.0.4',
author='Marcos Sánchez',
author_email='[email protected]',
description="Easily create page objects with a declarative syntax",
long_description=long_description,
py_modules=['sunbro'],
url='https://github.com/arkanus/selenium-sunbro',
license='Mozilla Public License 2.0 (MPL 2.0)',
keywords='selenium wedriver page object',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
],
install_requires=['selenium'],
extras_require={'UIAutomator': ['uiautomator']},
test_suite="tests",
)