-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
64 lines (58 loc) · 1.51 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
[build-system]
requires = ["setuptools>=61", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[project]
name = "hetmatpy"
description = "Matrix implementations for hetnets and path-count-based measures"
readme = "README.md"
keywords = [
"hetnet",
"hetmat",
"graph",
"heterogeneous",
"network",
"hetio",
"hetnetpy",
"dwpc",
"numpy",
]
classifiers = [
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
]
requires-python = ">=3.7"
license = {file = "LICENSE.md"}
dynamic = ["version"]
dependencies = [
"hetnetpy>=0.3.0",
"numpy",
"pandas",
"scipy",
]
[project.optional-dependencies]
dev = [
"pre-commit",
"portray",
"pytest",
"xarray",
]
[project.urls]
Source = "https://github.com/hetio/hetmatpy"
Documentation = "https://hetio.github.io/hetmatpy"
Tracker = "https://github.com/hetio/hetmatpy/issues"
Homepage = "https://het.io/software/"
Publication = "https://greenelab.github.io/connectivity-search-manuscript/"
[tool.setuptools_scm]
# enable https://github.com/pypa/setuptools_scm
# https://pycqa.github.io/isort/docs/configuration/config_files.html
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.black]
target-version = ['py37', 'py38', 'py39', 'py310']