-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
85 lines (81 loc) · 1.9 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
83
84
85
[project]
name = "sklarpy"
version = "1.0.0"
description="Copula, Multivariate and Univariate probability distribution fitting in Python."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE.txt"}
keywords=[
"SklarPy",
"Sklar",
"Copula",
"Copulas",
"Copulae",
"Probability",
"Distribution",
"Univariate",
"Bivariate",
"Multivariate",
"Joint",
"CDF",
"PDF",
"Modeling",
"Quantitative",
"Fitting",
"SciPy",
"Statistics",
"Mathematics",
"Science",
"Scientific",
"Finance",
"Risk",
"VaR",
"Machine Learning",
"Variables",
]
authors = [
{name = "Tyler Mitchell", email = "[email protected]"}
]
maintainers = [
{name = "Tyler Mitchell", email = "[email protected]"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"scipy>=1.11.0",
"numpy>=1.24.3",
"pandas>=2.0.2",
"matplotlib>=3.7.1",
"tqdm>=4.65.0",
"dill>=0.3.6",
"seaborn>=0.12.2"
]
[project.optional-dependencies]
dev = [
"pytest==7.1.2",
"tox==3.25.1",
]
docs = [
"sphinx~=4.2.0",
]
[project.urls] # Optional
"Homepage" = "https://github.com/tfm000/sklarpy"
"Bug Reports" = "https://github.com/tfm000/sklarpy/issues"
"Source" = "https://github.com/tfm000/sklarpy"
[build-system]
requires = ["setuptools>=62.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["sklarpy*"]
namespaces = false