-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (48 loc) · 1.47 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
[tool.poetry]
name = "deep_collections"
version = "0.4.2"
authors = ["Joseph Nix <nixjdm@terminallabs.com>"]
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development',
]
description = "Easy access to items in deep collections."
keywords = ["deep", "nested", "dict", "json", "data"]
license = "BSD"
readme = "README.md"
repository = "https://github.com/terminal-labs/deep_collections"
[tool.poetry.dependencies]
python = "^3.7"
[tool.poetry.group.dev.dependencies]
coverage = "^6.3.2"
cython = "^0.29.32"
dotty-dict = "^1.3.0"
dpath = "^2.0.6"
ipdb = "^0.13.9"
ipython = ">7"
jmespath = "^1.0.0"
pre-commit = "^2.17.0"
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
pytest-mock = "^3.7.0"
tox = "^3.24.5"
tox-poetry-installer = {version = "^0.9.0"}
radon = "^5.1.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
[tool.flake8]
line-length = 120