-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
63 lines (59 loc) · 1.77 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
# Copyright (C) 2021-2023 Arno Onken
#
# This file is part of the mixedvines package.
#
# The mixedvines package is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 3.
#
# The mixedvines package 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 General Public License for
# more details.
#
# You should have received a copy of the GNU General Public License along with
# this program. If not, see <http://www.gnu.org/licenses/>.
[build-system]
requires = ["flit_core>=3.2"]
build-backend = "flit_core.buildapi"
[project]
name = "mixedvines"
version = "1.3.4"
authors = [{name = "Arno Onken", email = "[email protected]"}]
description = "Canonical vine copula trees with mixed marginals"
readme = "README.rst"
license = {file="LICENSE"}
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
]
keywords = [
"copula",
"mixed",
"vine",
"continuous",
"discrete",
"entropy"
]
[project.urls]
"Homepage" = "https://github.com/asnelt/mixedvines"
"Documentation" = "https://mixedvines.readthedocs.io"
"Bug Tracker" = "https://github.com/asnelt/mixedvines/issues"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[project.optional-dependencies]
docs = [
"sphinx",
"numpydoc"
]