forked from casact/chainladder-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (86 loc) · 2.21 KB
/
pyproject.toml
File metadata and controls
93 lines (86 loc) · 2.21 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "chainladder"
version = "0.8.25"
authors = [
{name = "John Bogaardt", email = "jbogaardt@gmail.com"},
]
maintainers = [
{name = "John Bogaardt", email = "jbogaardt@gmail.com"},
]
description = "Chainladder Package - P&C Loss Reserving package"
readme = "README.rst"
license = {text = "MPL-2.0"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
keywords = ["actuarial", "reserving", "insurance", "chainladder", "IBNR"]
dependencies = [
"pandas>=2.0",
"scikit-learn>1.4.2",
"numba>0.54",
"sparse>=0.9",
"matplotlib",
"dill",
"patsy",
]
[project.urls]
Homepage = "https://github.com/casact/chainladder-python"
Documentation = "https://chainladder-python.readthedocs.io/"
Repository = "https://github.com/casact/chainladder-python"
"Bug Tracker" = "https://github.com/casact/chainladder-python/issues"
[project.optional-dependencies]
dev = [
"lxml",
"pytest",
"pytest-cov",
"pytest-xdist",
"jinja2",
"ipython",
"ipykernel",
]
docs = [
"sphinx",
"sphinx-rtd-theme",
"nbsphinx",
"numpydoc",
"jupyter-book",
"sphinx-togglebutton",
"ipython",
"parso>=0.8",
"polars", # For docs examples
"statsmodels", # For docs examples
]
test = [
"lxml",
"pytest",
"jinja2",
"ipython",
"pytest-cov", # For coverage testing
"dask",
]
performance = [
"dask", # For distributed computing
"cupy", # For GPU acceleration (if available)
]
all = [
"chainladder[dev,docs,test]",
]
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["chainladder", "chainladder.*"]
[tool.setuptools.package-data]
chainladder = ["utils/data/*"]