-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpyproject.toml
78 lines (68 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
[build-system]
requires = ["scikit-build-core >=0.4.3", "nanobind >=2.5.0"]
build-backend = "scikit_build_core.build"
[project]
name = "pyvinecopulib"
version = "0.7.1"
authors = [
{ name="Thibault Vatter", email="[email protected]" },
{ name="Thomas Nagler", email="[email protected]" },
]
description = "A python interface to vinecopulib"
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.8"
keywords = ['copula', 'vines copulas', 'pair-copulas constructions']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Other Audience',
'Intended Audience :: Science/Research',
'Intended Audience :: Telecommunications Industry',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Programming Language :: C++',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License'
]
dependencies = [
'numpy>=1.14',
'matplotlib>=3.0',
'networkx>=3.0',
'pydot>=3.0',
]
[project.optional-dependencies]
dev = [
"mypy",
"ruff",
"pytest",
]
[project.urls]
Homepage = "https://github.com/vinecopulib/pyvinecopulib/"
Documentation = "https://vinecopulib.github.io/pyvinecopulib"
Repository = "https://github.com/vinecopulib/pyvinecopulib.git"
Issues = "https://github.com/vinecopulib/pyvinecopulib/issues"
[tool.scikit-build]
# Protect the configuration against future changes in scikit-build-core
minimum-version = "0.4"
# Setuptools-style build caching in a local directory
build-dir = "build/{wheel_tag}"
# Build stable ABI wheels for CPython 3.12+
wheel.py-api = "cp312"
[tool.cibuildwheel]
# Necessary to see build output from the actual compilation
build-verbosity = 1
# Run pytest to ensure that the package was correctly built
test-command = "pytest {project}/tests"
test-requires = "pytest"
# Don't test Python 3.8 wheels on macOS/arm64
test-skip="cp38-macosx_*:arm64"
# Needed for full C++17 support
[tool.cibuildwheel.macos.environment]
MACOSX_DEPLOYMENT_TARGET = "10.14"