-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
79 lines (69 loc) · 1.52 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
[tool.poetry]
name = "python-class"
version = "0.1.1"
description = "The lessons and code related to the Python class that I've been teaching."
authors = ["Alissa Huskey <alissa.huskey@gmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "3.8.16"
blessed = "*"
colorama = "*"
colorful = "*"
console = "*"
click = "*"
lolcat = "*"
pandas = "*"
rich = "*"
requests = "*"
tabulate = "*"
[tool.poetry.group.docs.dependencies]
jupyter-book = "0.13.2"
jupyterthemes = "*"
jupytext = "*"
sphinxcontrib-kroki = "*"
sphinxcontrib-runcmd = "*"
sphinx-code-highlighter = "*"
sphinx-exercise = "*"
sphinx-jinja = "*"
sphinx-tabs = "*"
pygments-ansi-color = "*"
pygments-pytest = "*"
asciinema = { version = "*", markers = "sys_platform != 'win32'" }
more_itertools = "*"
selenium = "*"
[tool.poetry.group.dev.dependencies]
black = "*"
flake8 = "*"
ipdb = "*"
ipython = "*"
isort = "*"
# jupyter = "*"
neovim = "*"
pdbpp = "*"
pdbr = "*"
pre-commit = "*"
pylama = "*"
pylint = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
pytest-clarity = "*"
pytest-only = "*"
pytest-parametrization = "*"
xdoctest = "*"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-vvx"
[tool.isort]
include_trailing_comma = true
ensure_newline_before_comments = true
line_length = 88
skip_gitignore = true
# profile = "black"
multi_line_output = 3
# force_grid_wrap = 0
# use_parentheses = true
[build-system]
# requires = ["poetry>=0.12"]
# build-backend = "poetry.masonry.api"
requires = ["poetry-core>=1.0.0a5"]
build-backend = "poetry.core.masonry.api"