forked from MarketSquare/robotframework-seleniumtestability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
57 lines (50 loc) · 1.74 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
47
48
49
50
51
52
53
54
55
56
57
# -*- coding: utf-8 -*-
"""
SeleniumTestability
"""
import versioneer
from pathlib import Path
from setuptools import setup
LIBRARY_NAME = "SeleniumTestability"
CWD = Path(__file__).parent
requirements_file = CWD / "requirements.txt"
readme_file = CWD / "README.md"
# Get requirements
with requirements_file.open(encoding="utf-8") as f:
REQUIREMENTS = f.read().splitlines()
# Get the long description from the README file
with readme_file.open(encoding="utf-8") as f:
long_description = f.read()
CLASSIFIERS = """
Development Status :: 3 - Alpha
Topic :: Software Development :: Testing
Operating System :: OS Independent
License :: OSI Approved :: Apache Software License
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Software Development :: Testing
Framework :: Robot Framework
Framework :: Robot Framework :: Library
""".strip().splitlines()
setup(
name="robotframework-%s" % LIBRARY_NAME.lower(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description="SeleniumTestability library that helps speed up tests with" "asyncronous evens",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/rasjani/robotframework-%s" % LIBRARY_NAME.lower(),
author="Jani Mikkonen",
author_email="[email protected]",
license="Apache License 2.0",
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
keywords="robot framework testing automation selenium seleniumlibrary"
"testability async javascript softwaretesting",
platforms="any",
packages=[LIBRARY_NAME],
package_dir={"": "src"},
package_data={"": ["js/*.*"]},
)