-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
37 lines (33 loc) · 967 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "truncated_triangle_distribution_mean"
version = "0.1.2"
description = "A small package that calculates the mean of a truncated triangular distribution analytically."
authors = [
{ name = "John Scolaro", email = "[email protected]" }
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
keywords = ['truncated', 'triangular', 'distribution']
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Mathematics"
]
[project.urls]
repository = 'https://github.com/JohnScolaro/truncated_triangle_distribution_mean'
[project.optional-dependencies]
dev = [
"mypy==1.11.2",
"pre-commit==3.8.0",
"pytest==8.3.2",
"ruff==0.6.2",
"scipy==1.14.1"
]
[tool.mypy]
ignore_missing_imports = true