-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (69 loc) · 1.61 KB
/
pyproject.toml
File metadata and controls
77 lines (69 loc) · 1.61 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "simex"
version = "1.0.0"
authors = [
{name = "Si-lab Team", email = "amy.liffey@hevs.ch"},
]
description = "Systematic exploration tool for simulation and modeling"
readme = "README.md"
license = {text = "Apache 2.0"}
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
]
dependencies = [
"matplotlib>=3.8.0",
"numpy>=1.26.0",
"scikit-learn>=1.3.0",
"pandas>=2.2.2",
]
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"black>=22.0",
"flake8>=4.0",
"jupyter>=1.0",
"notebook>=6.0",
]
[project.scripts]
simex-run = "examples.simex_run:main"
[project.urls]
Homepage = "https://github.com/SiLab-group/SimEx"
Repository = "https://github.com/SiLab-group/SimEx.git"
Issues = "https://github.com/SiLab-group/SimEx/issues"
[tool.setuptools.packages.find]
include = ["simex*","examples*"]
[tool.black]
line-length = 88
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--cov=simex --cov-report=html --cov-report=term-missing"
[tool.coverage.run]
relative_files = true