forked from MarketSquare/robotframework-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (51 loc) · 1.84 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
58
59
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages # type: ignore
import sys
sys.path.append("Browser")
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
packages = find_packages(exclude=["utest", "atest"])
package_data = {
"": ["*"],
"Browser": [
"wrapper/index.js",
"wrapper/package.json",
"wrapper/package-lock.json",
"wrapper/static/selector-finder.js",
],
}
install_requires = open(os.path.join("Browser", "requirements.txt")).readlines()
setup_kwargs = {
"name": "robotframework-browser",
"version": "18.9.1",
"description": "Robot Framework Browser library powered by Playwright. Aiming for speed, reliability and visibility.",
"long_description": long_description,
"long_description_content_type": "text/markdown",
"author": "MarketSquare - Robot Framework community",
"author_email": "mikko.korpela@gmail.com",
"maintainer": None,
"maintainer_email": None,
"url": "https://github.com/MarketSquare/robotframework-browser",
"packages": packages,
"package_dir": {"": "."},
"package_data": package_data,
"include_package_data": True,
"install_requires": install_requires,
"extras_require": {
"tidy": ["robotframework-tidy>=4.12.0"]
},
"entry_points": {"console_scripts": ["rfbrowser=Browser.entry.__main__:cli"]},
"python_requires": ">=3.9,<4.0",
"classifiers": [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Testing",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
],
"include_package_data": True,
}
setup(**setup_kwargs)