forked from RedHatQE/widgetastic.core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (42 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
# -*- coding: utf-8 -*-
import codecs
from setuptools import find_packages, setup
setup(
name="widgetastic.core",
use_scm_version=True,
author="Milan Falesnik",
author_email="[email protected]",
description='Making testing of UIs fantastic',
long_description=codecs.open('README.rst', mode='r', encoding='utf-8').read(),
license="Apache license",
url="https://github.com/RedHatQE/widgetastic.core",
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'anytree',
'cached_property',
'jsmin',
'selenium-smart-locator',
'six',
'wait_for',
],
setup_requires=[
'setuptools_scm',
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
],
)