-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (51 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
56 lines (51 loc) · 1.04 KB
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
[tool.poetry]
name = "pom_elements"
version = "0.1.0"
description = ""
authors = ["Nick Beaird <nicklasbeaird@gmail.com>"]
[tool.poetry.dependencies]
python = "^3.8"
selenium = "^3.141.0"
pydocstyle = "^5.0.2"
pdoc3 = "^0.8.1"
[tool.poetry.dev-dependencies]
black = "^19.10b0"
flake8 = "^3.7.9"
isort = "^4.3.21"
mypy = "^0.770"
pytest = "^5.2"
pre-commit = "^2.2.0"
pytest-cov = "^2.8.1"
pytest-selenium = "^1.17.0"
tox = "^3.14.5"
ipdb = "^0.13.2"
wheel = "^0.34.2"
setuptools = "^46.1.3"
twine = "^3.1.1"
[tool.poetry.extras]
test = ["pytest"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"