This repository was archived by the owner on Feb 26, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
94 lines (84 loc) · 1.97 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
90
91
92
93
94
[project]
name = "synthdb"
authors = [
{ name="Blue Brain Project, EPFL" }
]
description = "Small database to host synthesis-related files and integrated tools."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "Apache License 2.0" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
]
dynamic = ["version"]
dependencies = [
"click>=8.0",
"luigi>=3.2",
"luigi-tools>=0.2.1",
"neurots>=3.6.0,<4",
"sqlalchemy>=1.4.24",
"synthesis-workflow>=1.2.1",
]
[project.optional-dependencies]
docs = [
"myst_parser",
"sphinx",
"sphinx-autoapi",
"sphinx-bluebrain-theme",
"sphinx-click",
]
test = [
"pytest>=6.1",
"pytest-click>=1.1",
"pytest-console-scripts>=1.4",
"pytest-cov>=4.1",
"pytest-html>=3.2",
]
[project.urls]
Homepage = "https://synthdb.readthedocs.io"
Repository = "https://github.com/BlueBrain/synthdb"
Tracker = "https://github.com/BlueBrain/synthdb/issues"
[project.scripts]
synthdb = "synthdb.cli:cli"
[build-system]
requires = [
"setuptools>=45",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.setuptools.packages.find]
include = ["synthdb*"]
exclude = ["synthdb.alembic*"]
[tool.black]
line-length = 100
target-version = [
"py39",
"py310",
"py311",
"py312",
]
[tool.pydocstyle]
# ignore the following:
# - D107: Missing docstring in __init__
add-ignore = [
"D107",
]
convention = "google"
[tool.isort]
profile = "black"
line_length = 100
force_single_line = true
[tool.pytest.ini_options]
testpaths = [
"tests",
]