-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
82 lines (72 loc) · 2.38 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
###############################################################################
# Main library #
###############################################################################
[project]
name = "gglasso"
dynamic = ["version"]
description = 'Algorithms for Single and Multiple Graphical Lasso problems.'
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
keywords = ["network inference",
"graphcial models",
"graphical lasso",
"optimization"]
authors = [
{name = "Fabian Schaipp", email = "[email protected]" },
{name = "Oleg Vlasovets", email = ""},
{name = "Christian L. Müller", email = ""},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
"numpy>=1.17.3, <2.0.0",
"scipy>=0.11.0",
"scikit-learn>=0.24.1",
"numba>=0.46.0, <0.60.0",
"pandas",
"matplotlib",
"seaborn",
"networkx",
]
[project.urls]
Documentation = "https://gglasso.readthedocs.io/en/stable/"
Issues = "https://github.com/fabian-sp/GGLasso/issues"
Source = "https://github.com/fabian-sp/GGLasso"
[tool.hatch.version]
path = "src/gglasso/__init__.py"
[[tool.hatch.envs.all.matrix]]
python = ["3.9", "3.10", "3.11", "3.12"]
# The minimum Python version that should be supported
target-version = "py39"
[tool.hatch.build.targets.sdist]
include = ["src/gglasso"]
[tool.hatch.build.targets.wheel]
packages = ["src/gglasso"]
###############################################################################
# Development dependencies #
###############################################################################
# See: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#writing-pyproject-toml
[project.optional-dependencies]
tests = ["pytest", "pytest-cov"]
docs = [
"sphinx",
"sphinx-gallery",
"sphinx_rtd_theme",
]
examples = [
"regain",
"scikit-fda",
]