-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
79 lines (74 loc) · 2.13 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "dotty_dict"
version = "1.3.1"
description = "Dictionary wrapper for quick access to deeply nested keys."
readme= "README.rst"
authors = ["Pawel Zadrozny <[email protected]>"]
license = "MIT"
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'License :: OSI Approved :: MIT License',
]
packages = [
{include = "dotty_dict"},
]
[tool.poetry.dependencies]
python = ">=3.5,<4.0"
[tool.poetry.dev-dependencies]
pytest = [
{version = "7.1.2", python = ">=3.7"},
{version = "4.0.0", python = ">=3.5,<3.7"},
]
tox = "3.25.1"
tox-pyenv = "1.1.0"
coverage = [
{version = "6.4.1", python = ">=3.8"},
]
bump2version = "1.0.1"
Sphinx = [
{version = "4.3.2", python = ">=3.8"},
]
sphinx-rtd-theme = [
{version = "1.0.0", python = ">=3.8"},
]
flake9 = "3.8.3.post2"
flake8-bandit = [
{version = "3.0.0", python = ">=3.8"},
]
flake8-bugbear = [
{version = "22.7.1", python = ">=3.8"},
]
flake8-builtins = "1.5.3"
flake8-comprehensions = [
{version = "3.10.0", python = ">=3.8"},
]
flake8-rst-docstrings = [
{version = "0.2.6", python = ">=3.8"},
]
pytest-flakefinder = "1.0.0"
[tool.flake8]
max-line-length = 100
max-complexity = 10
statistics = true
ignore = ["B101", "E501"]
select = ["B", "B902", "B950", "C", "E", "F", "G", "H", "I", "N", "RST", "W"]
exclude = [".eggs", "docs", "setup.py", ".tox", ".venv"]
[tool.pytest.ini_options]
addopts = "-rx -s --verbose"
testpaths = ["tests"]