-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
58 lines (52 loc) · 1.01 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
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "vdom/_version.py"
tag_prefix = ""
parentdir_prefix = "vdom-"
[tool.black]
line-length = 100
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
# The following are specific to Black, you probably don't want those.
| blib2to3
| tests/data
| profiling
)/
'''
skip-string-normalization = true
[tool.poetry]
name = "vdom"
version = "1.0.0"
description = ""
authors = ["Kyle Kelley <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
ipython = "^8.11.0"
jsonschema = "^4.17.3"
[tool.poetry.group.dev.dependencies]
types-jsonschema = "^4.17.0.6"
pytest = "^7.2.2"
mypy = "^1.1.1"
flake8-docstrings = "^1.7.0"
black = "^23.1.0"
isort = "^5.12.0"
pytest-cov = "^4.0.0"
pytest-asyncio = "^0.21.0"
nox = "^2022.11.21"
nox-poetry = "^1.0.2"
pytest-mock = "^3.10.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"