-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (73 loc) · 2.32 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[project]
name = "chimerapy-orchestrator"
version = "0.0.3"
description = "ChimeraPyOrchestrator: A webapp and CLI tool for orchestrating ChimeraPy pipelines"
authors = [
{name = "Eduardo Davalos", email="[email protected]"},
{name = "Umesh Timalsina", email="[email protected]"}
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">3.6"
keywords = ["multimodal", "data", "distributed", "streaming", "real-time"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
'chimerapy-engine',
'pydantic>=2.0.0',
'pydantic-settings',
'fastapi[all]',
'importlib-metadata',
]
[project.optional-dependencies]
test = [
'pytest',
'pytest-anyio',
'coveralls',
'pre-commit',
'coverage[toml]',
'bump2version'
]
[project.urls]
homepath = "https://github.com/chimerapy/Orchestrator"
documentation = "https://github.com/chimerapy/Orchestrator"
repository = "https://github.com/chimerapy/Orchestrator"
# Entrypoint
[project.scripts]
cp-orchestrator = "chimerapy.orchestrator.cli.__main__:run"
[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.package-data]
chimerapy = ['orchestrator/**/*.json']
[project.entry-points."chimerapy.orchestrator.nodes_registry"]
get_nodes_registry = "chimerapy.orchestrator.registry:register_nodes_metadata"
[tool.setuptools.packages.find]
where = ["."]
[tool.coverage]
[tool.coverage.run]
omit = ["*/tests/*", "*/__init__.py", "*/__main__.py", "*/__version__.py"]
[tool.ruff]
ignore = ["E501"]
select = ["E", "W", "F", "C", "B", "I"]
ignore-init-module-imports = true
fixable = ["I001"] # isort fix only
[tool.ruff.per-file-ignores]
"__init__.py" = ["E402", "F401"]
"chimerapy/__version__.py" = ["E402"]
"docs/conf.py" = ["E402"]
[tool.pytest.ini_options]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]