-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
52 lines (46 loc) · 1.29 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
[tool.poetry]
name = "pyppeteerstealth"
version = "0.0.5"
description = "A general collection of robot-evading tweaks for pyppeteer-ng"
readme = 'README.md'
license = "MIT"
homepage = "https://github.com/dgtlmoon/pyppeteerstealth"
repository = "https://github.com/dgtlmoon/pyppeteerstealth"
keywords=['pyppeteer', 'puppeteer', 'chrome', 'chromium', 'pyppeteerstealth', 'stealth', 'robot', 'captcha']
authors = [
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.9'
]
packages = [
{ include = "pyppeteerstealth" },
]
include = [
"README.md"
]
exclude = [
'*/__pycache__',
'*/*.py[co]',
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/dgtlmoon/pyppeteerstealth/issues"
[tool.poetry.scripts]
pyppeteer-install = 'pyppeteerstealth.command:install'
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39', 'py310']
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 = []
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"