-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
55 lines (49 loc) · 1.1 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
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "activesoup"
version = "0.3.1"
description = "A pure-python headless browser"
license = "MIT"
authors = ["James Elford <[email protected]>"]
readme = "README.rst"
homepage = "https://github.com/jelford/activesoup"
repository = "https://github.com/jelford/activesoup"
classifiers = [
"Development Status :: 3 - Alpha"
]
packages = [
{ include = "activesoup", from = "src" }
]
include = [
"README.rst"
]
[tool.poetry.dependencies]
requests = "^2.9.0"
html5lib = ">=0.9"
python = "^3.6.7,<4.0.0"
typing_extensions = "^3.10"
[tool.poetry.dev-dependencies]
pytest = "^=6.2.1"
Flask = "^1.1.2"
pre-commit = "^2.9.3"
mypy = "^0.960"
black = "^22.3"
typed-ast = "^1.5"
isort = "^5.10.0"
bump2version = "^1.0.1"
requests-mock = "^1.9.3"
Sphinx = "^5.0"
sphinx-rtd-theme = "^0.5.2"
types-requests = "^2.27"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules"
[tool.mypy]
strict_optional = true
[[tool.mypy.overrides]]
module = [
"html5lib",
]
ignore_missing_imports = true