-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (34 loc) · 911 Bytes
/
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
[tool.poetry]
name = "ipython-memory-magics"
version = "0.3.7"
description = "IPython magic commands for tracking memory usage"
license = "MIT"
authors = [
"Ruslan Mukhametshin <[email protected]>"
]
readme = "README.md"
homepage = "https://github.com/rusmux/ipython-memory-magics"
keywords = ["memory", "profiler", "jupyter", "magic"]
packages = [{ include = "memory_magics" }]
[tool.poetry.dependencies]
python = ">=3.8, <3.11"
notebook = "^6.5.2"
psutil = "^5.9.3"
ipython = "^8.5.0"
[tool.poetry.group.dev.dependencies]
wemake-python-styleguide = "^0.17.0"
pytest = "^7.2.1"
coverage = "^7.1.0"
pre-commit = "^3.0.4"
[tool.black]
# for pre-commit hooks
line-length = 120
target-version = ["py38", "py39", "py310"]
[tool.isort]
# for pre-commit hooks
profile = 'black'
line_length = 120
multi_line_output = 3
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"