-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (40 loc) · 1.14 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
[tool]
[tool.poetry]
name = "graph_progression"
version = "0.0.0"
homepage = "https://github.com/askarthur/graph-progression"
description = "Create a progression of recommendations from a user-supplied recommender"
authors = ["Marco Gancitano <marco.gancitano@askarthur.art>"]
readme = "README.md"
license = "MIT"
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
include = [
"LICENSE",
"graph_progression/py.typed"
]
[tool.poetry.dependencies]
python = "^3.7"
importlib_metadata = "^3.4.0"
[tool.poetry.dev-dependencies]
mkdocs-material = "^6.1.5"
pytest = "^6.0"
pytest-cov = "^2.10.1"
flake8 = "^4.0.0"
flake8-docstrings = "1.6.0"
flake8-import-order = "0.18.1"
flake8-colors = "0.1.8"
black = "22.3.0"
mypy = "0.960"
[tool.black]
line-length=100
[tool.pytest.ini_options]
addopts = "--cov=graph_progression --cov-branch --cov-report term-missing -vv --color=yes --cov-fail-under 100"
python_files = "tests.py test_*.py *_tests.py"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"