-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 1022 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
38
39
40
[tool.poetry]
name = "non-normal"
version = "0.1.2"
description = "Generate non-normal distributions with known mean, variance, skewness and kurtosis"
license = "MIT"
readme = "README.md"
homepage = "https://github.com/<your-username>/hypermodern-python"
repository = "https://github.com/<your-username>/hypermodern-python"
keywords = ["non-normal", "fleishman", "distribution", "statistics"]
authors = ["Aman Chokshi <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.9"
numpy = "^1.25.0"
[tool.poetry.dev-dependencies]
pytest = "^7.3.2"
pytest-cov = "^4.1.0"
coverage = {extras = ["toml"], version = "^7.2.7"}
nox = "^2023.4.22"
black = "^23.3.0"
flake8 = "^6.0.0"
flake8-black = "^0.3.6"
flake8-import-order = "^0.18.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["non_normal"]
[tool.coverage.report]
show_missing = true
fail_under = 100