-
Notifications
You must be signed in to change notification settings - Fork 9
/
pyproject.toml
77 lines (69 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
[build-system]
requires = ["setuptools>=61", "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",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"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",
"titlecase",
]
license = {text = "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 = [
"docutils<0.17",
"jupyter-sphinx",
"nbsphinx",
"pickleshare",
"recommonmark>=0.7.1",
"setuptools>=62.3.2",
"sphinx>=5.0",
"sphinx-panels",
"sphinx-rtd-dark-mode",
"sphinxcontrib-bibtex",
"sphinx-copybutton",
"sphinx-toggleprompt",
"sphinx-multitoc-numbering"
]
[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"