-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
132 lines (110 loc) · 3.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
[project]
name = "better-dict"
dynamic = ["version"]
description = "Python dictionary revamped."
readme = "README.md"
classifiers = [
"Development Status :: 1 - Planning",
]
[tool.poetry]
name = "better-dict"
version = "0.0.1"
description = "Python dictionary revamped."
authors = ["Erik Ingwersen <[email protected]>"]
license = "LICENSE.md"
readme = "README.md"
homepage = "https://github.com/ingwersen-erik/better-dict"
repository = "https://github.com/ingwersen-erik/better-dict"
documentation = "https://better-dict.readthedocs.io"
packages = [
{ include = "better_dict", from = "src" },
]
classifiers = [
"Development Status :: 1 - Planning",
]
[tool.poetry.urls]
Changelog = "https://github.com/ingwersen-erik/better-dict/releases"
[tool.poetry.dependencies]
python = ">=3.8,<3.11"
black = { version = ">=21.10b0", optional = false }
flake8 = { version = ">=4.0.1", optional = false }
flake8-bandit = { version = ">=2.1.2", optional = false }
flake8-bugbear = { version = ">=21.9.2", optional = false }
flake8-docstrings = { version = ">=1.6.0", optional = false }
flake8-rst-docstrings = { version = ">=0.2.5", optional = false }
flake8-annotations = {version = "^2.7.0", python = ">= 3.6.2", optional = false }
python-dotenv = { version = "^0.19.2", optional = false }
joblib = "^1.2.0"
pandas = "^1.5.3"
numpy = "^1.24.2"
pytest = "^7.2.2"
[tool.poetry.dev-dependencies]
Pygments = { version = ">=2.10.0", optional = true }
coverage = {extras = ["toml"], version = ">=6.2" }
click = { version = ">=8.0.1", optional = true }
darglint = { version = ">=1.8.1", optional = true }
furo = { version = ">=2021.11.12", optional = true }
isort = { version = ">=5.10.1", optional = true }
mypy = { version = ">=0.930", optional = true }
myst-parser = { version = ">=0.16.1", optional = true }
pep8-naming = { version = ">=0.12.1", optional = true }
pre-commit = { version = ">=2.16.0", optional = true }
pre-commit-hooks = { version = ">=4.1.0", optional = true }
pytest = { version = ">=6.2.5", optional = true }
pyupgrade = { version = ">=2.29.1", optional = true }
safety = { version = ">=1.10.3", optional = true }
sphinx = { version = ">=4.3.2", optional = true }
sphinx-autobuild = { version = ">=2021.3.14", optional = true }
sphinx-click = { version = ">=3.0.2", optional = true }
typeguard = { version = ">=2.13.3", optional = true }
xdoctest = { extras = ["colors"], version = ">=0.15.10", optional = true }
#[tool.poetry.scripts]
[tool.coverage.paths]
source = ["src", "*/site-packages"]
tests = ["tests", "*/tests"]
[tool.coverage.run]
branch = true
source = ["better_dict", "tests"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[tool.isort]
profile = "black"
force_single_line = true
lines_after_imports = 2
[tool.mypy]
strict = true
warn_unreachable = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
[tool.black]
line-length = 80
skip-string-normalization = true
target-version = ['py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| build
| dist
| docs
)/
'''
[build-system]
requires = [
"poetry-core>=1.0.0",
"setuptools >= 45",
"setuptools_scm[toml]>=6.2",
"wheel",
]
build-backend = "poetry.core.masonry.api"
[tool.setuptools_scm]
write_to = "./src/better_dict/_version.py"