-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.cfg
93 lines (85 loc) · 2.07 KB
/
setup.cfg
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
89
90
91
92
93
[metadata]
name = copulae
author = Daniel Bok
author_email = daniel.bok@outlook.com
project_urls =
Documentation = https://copulae.readthedocs.io/en/latest/
Code = https://github.com/DanielBok/copulae
Issue tracker = https://github.com/DanielBok/copulae/issues
license = MIT
maintainer = Daniel Bok
maintainer_email = daniel.bok@outlook.com
description = Python copulae library for dependency modelling
long_description = file: README.md
long_description_content_type = text/markdown
keywords =
copula
copulae
dependency modelling
dependence structures
archimdean
elliptical
finance
classifiers =
Development Status :: 4 - Beta
Intended Audience :: End Users/Desktop
Intended Audience :: Financial and Insurance Industry
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
License :: OSI Approved :: MIT License
Operating System :: MacOS :: MacOS X
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Programming Language :: Python
Topic :: Scientific/Engineering
[build-system]
requires = ["cython", "numpy", "scipy"]
[options]
python_requires = >= 3.8
include_package_data = true
install_requires =
numpy >= 1.20
pandas >= 1.1
scikit-learn >= 0.23
scipy >= 1.5
statsmodels >= 0.12.1
typing-extensions >= 4.0.0; python_version < '3.11'
wheel >= 0.36
wrapt >= 1.12
[flake8]
max-line-length = 100
ignore =
E122,
E123,
E126,
E127,
E128,
E731,
E722
exclude =
.asv
.git,
build,
copulae/_version.py,
dist,
docs,
tests,
versioneer.py,
benchmarks,
[tool:pytest]
addopts = --tb=short
--cov=copulae
--cov-report=term-missing
--doctest-modules
filterwarnings =
ignore::UserWarning
ignore:invalid value encountered in log
ignore:covariance is not positive-semidefinite.
[coverage:report]
omit =
*/__init__.py
copulae/_version.py
copulae/special/_machine.py
copulae/special/trig.py
copulae/types.py