-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
74 lines (56 loc) · 1.75 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
69
70
71
72
73
74
[project]
name = "gsdcp"
version = "0.0.1"
description = "Configurations/Implementation of ChimeraPy Pipelines for GEM-STEP data collection fall 2023"
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">3.6"
keywords = ["education", "multimodal", "data", "learning", "analytics"]
classifiers = [
"Programming Language :: Python :: 3"
]
dependencies = [
'chimerapy-engine',
'chimerapy-pipelines',
'chimerapy-orchestrator',
'watchdog'
]
# Optional dependencies
[project.optional-dependencies]
scripts = [
'faker'
]
[project.urls]
homepath = "https://github.com/oele-isis-vanderbilt/GSDCP.git"
documentation = "https://github.com/oele-isis-vanderbilt/GSDCP.git"
repository = "https://github.com/oele-isis-vanderbilt/GSDCP.git"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/stable/userguide/datafiles.html
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
[tool.ruff]
ignore = ["E501"]
select = ["E", "W", "F", "C", "B", "I"]
ignore-init-module-imports = true
fixable = ["I001"] # isort fix only
extend-exclude = ["run.py"]
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]
[project.entry-points."chimerapy.orchestrator.nodes_registry"]
get_nodes_registry = "gsdcp:register_nodes_metadata"
# Reference:
# https://stackoverflow.com/questions/4673373/logging-within-pytest-tests
[tool.pytest.ini_options]
# Logging + CLI
log_cli = true
log_cli_level = "DEBUG"
log_cli_format = "%(asctime)s.%(msecs)03d [%(levelname)8s] %(message)s (%(filename)s:%(lineno)s)"
log_cli_date_format = "%Y-%m-%d %H:%M:%S"
# Timeout
faulthandler_timeout=300
# Ignore warnings
filterwarnings = "ignore::DeprecationWarning"