-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.42 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
[tool.poetry]
name = "seodeploy"
version = "0.1.0"
description = "Library to provide a flexible format to allow developers to incorporate SEO checks into development workflows"
authors = ["JR Oakes <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/jroakes/SEODeploy"
repository = "https://github.com/jroakes/SEODeploy"
keywords = ["SEO", "deploy", "sontinuous delivery", "testing"]
[tool.poetry.scripts]
seodeploy = "seodeploy.main:run"
[tool.poetry.dependencies]
python = "^3.7"
click = "^7.1.2"
requests = "^2.23.0"
numpy = "^1.18.4"
pandas = "^1.0.4"
tqdm = "^4.46.0"
parse_it = "^3.4.0"
bs4 = "^0.0.1"
lxml = "^4.5.1"
dictdiffer = "^0.8.1"
asyncio = "^3.4.3"
nest_asyncio = "^1.3.3"
pyppeteer = "^0.2.2"
[tool.poetry.dev-dependencies]
pytest = "^5.4.2"
prospector = {extras = ["with_pyroma"], version = "^1.2.0"}
black = "^19.10b0"
coverage = {extras = ["toml"], version = "^5.1"}
pytest-cov = "^2.9.0"
pytest-mock = "^3.1.1"
mkdocs = "^1.1.2"
mkdocs-material = "^5.3.0"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["seodeploy"]
omit = ["src/seodeploy/__main__.py", "*/modules/example_module/*",
"src/seodeploy/lib/__init__.py", "src/seodeploy/main.py"]
[tool.coverage.report]
show_missing = true
skip_covered = true
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"