forked from pyppeteer/pyppeteer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
88 lines (80 loc) · 2.2 KB
/
pyproject.toml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "pyppeteer"
version = "0.2.6"
description = "Headless chrome/chromium automation library (unofficial port of puppeteer)"
readme = 'README.md'
license = "MIT"
homepage = "https://github.com/pyppeteer/pyppeteer"
repository = "https://github.com/pyppeteer/pyppeteer"
keywords=['pyppeteer', 'puppeteer', 'chrome', 'chromium']
authors = [
"granitosaurus <[email protected]>",
"Hiroyuki Takagi <[email protected]>",
"Mattwmaster58 <[email protected]>",
"pyppeteer <[email protected]>",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
packages = [
{ include = "pyppeteer" },
]
include = [
"README.md",
"LICENSE",
"CHANGES.md",
]
exclude = [
'*/__pycache__',
'*/*.py[co]',
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/pyppeteer/pyppeteer/issues"
[tool.poetry.scripts]
pyppeteer-install = 'pyppeteer.command:install'
[tool.poetry.dependencies]
python = "^3.6.1"
appdirs = "^1.4.3"
importlib-metadata = ">=1.4"
pyee = "^8.1.0"
tqdm = "^4.42.1"
urllib3 = "^1.25.8"
websockets = "^9.1"
[tool.poetry.dev-dependencies]
tox = "^3.20.1"
syncer = "^1.3.0"
livereload = "^2.6.1"
flake8 = "^3.7.9"
m2r = "^0.2.1"
mypy = "^0.770"
pre-commit = "^2.2.0"
pydocstyle = "^5.0.2"
pylint = "^2.4.4"
pytest = "^5.3.5"
pytest-cov = "^2.8.1"
pytest-xdist = "^1.31.0"
readme_renderer = "^24.0"
sphinx = "^2.4.0"
sphinxcontrib-asyncio = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38']
skip-string-normalization = true
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_third_party = ["appdirs", "livereload", "pyee", "pyppeteer", "syncer", "tornado", "tqdm", "urllib3", "websockets"]