-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (44 loc) · 1.17 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
[project]
name = "python-logic"
version = "0.0.1"
authors = [
{ name="Diego Palma", email="[email protected]" },
]
description = "A package to run logic inferences on python"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/dpalmasan/py-logic"
Issues = "https://github.com/dpalmasan/py-logic/issues"
[tool.black]
line-length = 88
target-version = ['py38', 'py39']
include = '\.pyi?$'
[tool.coverage.run]
branch = true
[tool.coverage.report]
exclude_lines = [ "pragma: no cover", "if _typing.TYPE_CHECKING:", "@overload" ]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = ["--cov-fail-under=80", "--cov-report=xml", "--cov=.", "-ra", "-v"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{38,39}
[testenv]
setenv = PYTHONPATH = {toxinidir}
skip_install = True
deps =
-r{toxinidir}/requirements-test.txt
commands =
pip install -e .
pytest
"""
[build-system]
requires = ["setuptools>=45.0", "setuptools_scm[toml]>=6.3.1", "wheel"]
build-backend = "setuptools.build_meta"