-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (37 loc) · 862 Bytes
/
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]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [{name = "Pedro Crespo-Valero (pcrespov)"}]
classifiers = ["License :: OSI Approved :: MIT License"]
dependencies = [
"numpy",
"pydantic",
"pyyaml",
"scipy",
"sklearn",
"typer",
]
dynamic = ["version", "description"]
license = {file = "LICENSE"}
name = "osparc_function_services"
readme = "README.md"
[project.urls]
Home = "https://git.speag.com/simphony/osparc_function_services"
[project.optional-dependencies]
test = [
"pytest-sugar",
"pytest",
]
[project.scripts]
ofs = "osparc_function_services.cli:main"
# TOOLS --------------
[tool.isort]
ensure_newline_before_comments = true
float_to_top = true
force_grid_wrap = 0
include_trailing_comma = true
line_length = 88
multi_line_output = 3
profile = "black"
use_parentheses = true