-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.17 KB
/
pyproject.toml
File metadata and controls
60 lines (54 loc) · 1.17 KB
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
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[project]
name = "storm-project-starter-python"
description = "Starter project for the Python API of Storm via Stormpy"
version = "0.1"
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "S. Junges", email = "sebastian.junges@ru.nl" },
{ name = "M. Volk", email = "m.volk@tue.nl" }
]
requires-python = ">=3.9"
dependencies = [
"stormpy>=1.10",
]
classifiers = [
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.urls]
Homepage = "https://github.com/stormchecker/storm-project-starter-python"
[project.optional-dependencies]
dev = [
# Formatting
"black[jupyter]",
]
test = [
"pytest",
"nbval",
]
[tool.hatch.build.targets.wheel]
only-include = ["stormpy_starter"]
[tool.black]
line-length = 160
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--nbval"
#testpaths = [
# "tests",
# "examples",
# "doc",
#]
#python_files = [
# "test*.py",
# "examples/*.py",
#]
#python_functions = [
# "*_test",
# "test_*",
# "example_*",
#]