-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
68 lines (59 loc) · 1.82 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "toucan-mvp-calculator"
version = "0.1.dev0"
description = "A python library for computing the MVP of the Toucan tournament."
readme = "README.rst"
requires-python = ">=3.8,<4"
authors = [{name = "Roberto Pastor Muela", email = "[email protected]"}]
maintainers = [{name = "Roberto Pastor Muela", email = "[email protected]"}]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Information Analysis",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"importlib-metadata>=4.0,<5; python_version<='3.8'",
]
[project.optional-dependencies]
tests = [
"pytest==8.3.4",
"pytest-cov==5.0.0",
]
doc = [
"pydata-sphinx-theme==0.16.0",
"numpydoc==1.8.0",
"Sphinx==8.1.3",
"sphinx-autoapi==3.4.0",
"Sphinx-copybutton==0.5.2",
]
[tool.flit.module]
name = "toucan.mvp.calculator"
[tool.black]
line-length = 100
[tool.isort]
profile = "black"
force_sort_within_sections = true
line_length = 100
default_section = "THIRDPARTY"
src_paths = ["doc", "src", "tests"]
[tool.coverage.run]
source = ["toucan.mvp.calculator"]
[tool.coverage.report]
show_missing = true
[tool.pytest.ini_options]
minversion = "7.1"
addopts = "-ra --cov=toucan.mvp.calculator --cov-report html:.cov/html --cov-report xml:.cov/xml --cov-report term"
testpaths = [
"tests",
]