-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (28 loc) · 731 Bytes
/
pyproject.toml
File metadata and controls
32 lines (28 loc) · 731 Bytes
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
[tool.poetry]
name = "algorithms-specialization-stanford"
version = "0.0.0"
description = "Stanford's Algorithms Specialization courses."
authors = ["Connor McCarthy <mccarthy.connor.james@gmail.com>"]
packages = [
{ include = "src" }
]
[tool.poetry.dependencies]
python = ">=3.7.11,<4.0"
ipython = "^7.19.0"
pytest = "^6.2.2"
numpy = "^1.20.0"
disjoint-set = "^0.7.2"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
black = "^20.8b1"
mypy = "^0.800"
pytest = "^6.2.2"
pre-commit = "^2.10.0"
pytest-cov = "^2.11.1"
pytest-sugar = "^0.9.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
minversion = "6.2"
addopts = "--cov-report term-missing --cov=./"