-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (46 loc) · 902 Bytes
/
pyproject.toml
File metadata and controls
57 lines (46 loc) · 902 Bytes
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
[project]
name = "model_fc"
dynamic = ["version"]
authors = [
{name="McKenzie Hagen", email="mphagen@uw.edu"}
]
description = "calculating model-based connectomes"
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy",
"nilearn",
"pyuoi@git+https://github.com/nrdg/pyuoi.git"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
[project.optional-dependencies]
dev = ["pre-commit",
"pytest"]
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
include = ["model_fc*"]
[tool.ruff]
target-version = "py311"
[tool.ruff.lint]
select = [
"F",
"E",
"C",
"W",
"B",
"I",
]
ignore = [
"B905",
"C901",
"E203",
"F821"
]
[tool.ruff.lint.per-file-ignores]
"docs/_templates/numpydoc_docstring.py" = ["F821", "B018"]
[tool.ruff.lint.flake8-quotes]
docstring-quotes = "double"