This repository was archived by the owner on Jan 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1.45 KB
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 1.45 KB
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
# Blue Brain Search is a text mining toolbox focused on scientific use cases.
#
# Copyright (C) 2020 Blue Brain Project, EPFL.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
[build-system]
requires = [
"pip>=9",
"setuptools>=45",
"setuptools_scm[toml]>=3.4",
"wheel",
]
# This is pip's default value if the build-backend key is missing
# Ref: https://pip.pypa.io/en/stable/reference/build-system/pyproject-toml/#fallback-behaviour
# Tox with tox.isolated_build = true needs this key to be defined explicitly.
# Setuptools instructs setting build-backend without __legacy__, ref:
# https://setuptools.pypa.io/en/latest/build_meta.html#how-to-use-it
build-backend = "setuptools.build_meta"
[tool.black]
extend-exclude = """data_and_models/pipelines/ner/transformers_vs_spacy/transformers/
|data_and_models/pipelines/sentence_embedding/training_transformers/"""