forked from microsoft/playwright-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
meta.yaml
51 lines (47 loc) · 1.17 KB
/
meta.yaml
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
package:
name: playwright
version: "{{ environ.get('GIT_DESCRIBE_TAG') | replace('v', '') }}"
source:
path: .
build:
number: 0
script: "{{ PYTHON }} -m pip install . --no-deps -vv"
skip: true # [py<37]
binary_relocation: False
missing_dso_whitelist: "*"
entry_points:
- playwright = playwright.__main__:main
requirements:
host:
- python
- wheel
- pip
- curl
- setuptools_scm
run:
- python
- greenlet ==3.0.1
- pyee ==11.0.1
- typing_extensions # [py<39]
test:
requires:
- pip
imports:
- playwright
- playwright.sync_api
- playwright.async_api
commands:
- playwright --help
about:
home: https://github.com/microsoft/playwright-python
license: Apache-2.0
license_family: Apache
license_file: LICENSE
summary: Python version of the Playwright testing and automation library.
description: |
Playwright is a Python library to automate Chromium,
Firefox and WebKit browsers with a single API. Playwright
delivers automation that is ever-green, capable, reliable
and fast.
doc_url: https://playwright.dev/python/docs/intro/
dev_url: https://github.com/microsoft/playwright-python