-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (43 loc) · 1.23 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "ambulance_game"
author = "Michalis Panayides"
author-email = "PanayidesM@cardiff.ac.uk"
home-page = "https://github.com/11michalis11/AmbulanceDecisionGame"
requires-python = ">=3.8"
requires = [
"ciw==2.2.3",
"dask>=2021.08.1, <2021.09.0",
"matplotlib>=3.4.3, <3.5",
"nashpy==0.0.23",
"networkx>=2.4, <2.5",
"numpy>=1.20.0, <1.21.6",
"scipy>=1.7.1, <1.8",
"sympy>=1.5.1, <1.6",
]
classifiers = [ "License :: OSI Approved :: MIT License",]
description-file = "README.md"
[[tool.mypy.overrides]]
module = [
"numpy",
"matplotlib",
"matplotlib.pyplot",
"scipy",
"scipy.integrate",
"scipy.optimize",
"networkx",
"sympy",
"ciw",
"dask",
"nashpy",
]
ignore_missing_imports = true
[tool.pylint.messages_control]
max-line-length = 88
disable = ["fixme", "too-many-locals", "too-many-arguments",
"comparison-with-callable", "duplicate-code"]
good-names = ["a", "b", "c", "d", "e", "f", "i", "j", "k", "l", "M", "n", "Q",
"t", "u", "v", "x", "mu", "pi", "Q_sym", "Lambda", "sym_Lambda",
"augment_Q", "payoff_matrix_A", "payoff_matrix_B"]