-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (75 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
83 lines (75 loc) · 2.1 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
[build-system]
requires = ["setuptools>=70", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aggregate"
dynamic = ["version"]
description = "Tools for creating and working with aggregate probability distributions."
readme = "README.rst"
authors = [
{name = "Stephen J. Mildenhall", email = "steve@convexrisk.com"},
]
maintainers = [
{name = "Stephen J. Mildenhall", email = "steve@convexrisk.com"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Education",
"Topic :: Office/Business :: Financial",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = [
"IPython",
"cycler",
"ipykernel",
"jinja2",
"matplotlib>=3.5",
"numpy>=1.26",
"pandas>=2.1",
"psutil",
"Pygments",
"scipy>=1.11",
# made optional in 0.27
# "numba",
]
license = "BSD-3-Clause"
requires-python = ">=3.10"
[project.urls]
Documentation = "https://aggregate.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/mynl/aggregate"
[project.optional-dependencies]
dev = [
"myst-parser>=2.0",
"sphinx>=8.1,<9",
"docutils>=0.20,<0.22",
"nbsphinx>=0.9.4",
"jupyter-sphinx>=0.5.3",
"sphinx-design>=0.6",
"sphinx-copybutton>=0.5",
"sphinx-toggleprompt>=0.6",
"pickleshare",
# "recommonmark>=0.7.1",
# "setuptools>=62.3.2",
# "sphinx-panels",
# "sphinx-rtd-dark-mode",
"sphinx_rtd_theme>=2.0",
"sphinxcontrib-bibtex",
"sphinx-multitoc-numbering",
"sphinx-design"
]
[tool.setuptools.dynamic]
version = { attr = "aggregate.__version__" }
[tool.setuptools]
include-package-data = true
packages = ["aggregate", "aggregate.extensions", "aggregate.sly"]
#[tool.setuptools.packages.find]
#where = ["."]
#exclude = ["templates*", "agg*"]
[project.entry-points."pygments.lexers"]
lexer = "aggregate.decl_pygments:AggLexer"