-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (55 loc) · 1.34 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
[build-system]
requires = [
"setuptools>=64",
"setuptools_scm>=8"
]
build-backend = "setuptools.build_meta"
[project]
name = "bbp-workflow-svc"
description = "Workflow launcher service"
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "Blue Brain Project, EPFL" },
]
keywords = [
"computational neuroscience",
"BlueBrainProject",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Operating System :: POSIX",
"Topic :: Scientific/Engineering",
"Topic :: Utilities",
]
dependencies = [
"bbp-workflow",
"sh",
]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"sphinx-bluebrain-theme",
]
[project.urls]
Homepage = "https://github.com/BlueBrain/bbp-workflow-svc"
Documentation = "https://github.com/BlueBrain/bbp-workflow-svc"
Repository = "https://github.com/BlueBrain/bbp-workflow-svc"
Issues = "https://github.com/BlueBrain/bbp-workflow-svc/issues"
[tool.setuptools.packages.find]
include = ["bbp_workflow_svc"]
namespaces = false
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.black]
line-length = 100
target-version = [
'py311',
'py312',
]
include = 'bbp_workflow_svc\/.*\.py$|tests\/.*\.py$|doc\/source\/conf\.py$|setup\.py$'
[tool.isort]
profile = "black"
line_length = 100