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
88 lines (76 loc) · 2.15 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
[tool.poetry]
name = "connectome_analysis"
version = "0.0.1"
description = "Functions for network analysis of graphs coming brain models and activity on them"
authors = [
"Daniela Egas Santander <daniela.egassantander@epfl.ch>",
"Christoph Pokorny <christoph.pokorny@epfl.ch>",
"Michael Wolfgang Reimann <michael.reimann@epfl.ch>",
"Jason Smith <jason.smith@ntu.ac.uk>", #TODO: I make the list alpabhetical, am I missing someone?
]
license = "TO BE DECIDED"
readme = "README.md"
documentation = "https://danielaegassan.github.io/connectome_analysis"
homepage = "https://danielaegassan.github.io/connectome_analysis"
repository = "https://github.com/danielaegassan/connectome_analysis"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
packages = [
{ include = "connalysis", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8.3, <4"
numpy = "*"
pandas = "*"
tables = "*"
scipy = "*"
matplotlib = "*"
progressbar ="2.5"
tqdm="*"
pyflagser ="*"
bigrandomgraphs = ">=0.0.4"
pyflagsercount = ">=0.2.41"
networkx="*"
[tool.poetry.dev-dependencies]
black = "*"
mkdocstrings = {version = ">=0.18", extras = ["python"]}
mkdocs-material = "*"
pytest = "*"
pytest-github-actions-annotate-failures = "*"
pytest-cov = "*"
[tool.poetry.group.dev.dependencies]
jupyter = "^1.0.0"
seaborn = "*"
#networkx = "*"
[build-system]
requires = ["poetry-core>=1.2.0", "setuptools"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
[tool.black]
target-version = ["py37", "py38", "py39"]
include = '\.pyi?$'
[tool.pytest.ini_options]
addopts = """\
--cov template \
--cov tests \
--cov-report term-missing \
--no-cov-on-fail \
"""
[tool.coverage.report]
fail_under = 100
exclude_lines = [
'if TYPE_CHECKING:',
'pragma: no cover'
]