-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
43 lines (34 loc) · 1.09 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
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
[project]
name = "hebg"
authors = [
{ name = "Mathïs Fédérico" },
{ name = "Mathïs Fédérico", email = "[email protected]" },
]
description = "HEBG: Hierarchial Explainations of Behavior as Graph"
dynamic = ["version", "readme", "dependencies"]
license = { text = "GPLv3 license" }
requires-python = ">=3.7"
[project.urls]
repository = "https://github.com/IRLL/HEB_graphs"
[tool.setuptools]
license-files = ['LICEN[CS]E*', 'COPYING*', 'NOTICE*', 'AUTHORS*']
[project.optional-dependencies]
dev = ["ruff", "pytest", "pytest-check", "pytest-mock", "pytest-cov", "mypy", "pre-commit"]
[project.scripts]
[tool.setuptools.dynamic]
readme = { file = ["README.rst"] }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools_scm]
[tool.mypy]
files = "hebg"
check_untyped_defs = true
disallow_any_generics = false
disallow_incomplete_defs = true
no_implicit_optional = true
no_implicit_reexport = false
strict_equality = true
warn_redundant_casts = true
warn_unused_ignores = true
ignore_missing_imports = true