-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (36 loc) · 936 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
45
46
47
48
49
50
[tool.poetry]
name = "spylt"
version = "0.1.0-post1"
description = "Back up matplotlib's figure data for easy reproduction"
authors = ["Thomas Louf <tlouf+pro@pm.me>"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/TLouf/spylt"
[tool.poetry.dependencies]
python = "^3.7"
matplotlib = "^3.0"
[tool.poetry.group.test.dependencies]
pytest = "^6.0.0"
[tool.poetry.group.lint.dependencies]
black = "22.8.0"
flake8 = "3.9.2"
flake8-comprehensions = "3.1.0"
flake8-bugbear = "21.3.2"
isort = "5.10.1"
absolufy-imports = "0.3.1"
pre-commit = "^2.9.2"
[tool.poetry.group.docs.dependencies]
pydata-sphinx-theme = "^0.13.2"
sphinx = "^5.3.0"
numpydoc = "^1.5.0"
sphinx-copybutton = "^0.5.1"
myst-parser = "^0.18.1"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"