-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "relistats"
version = "1.2.0"
dependencies = [
"scipy",
]
requires-python = ">=3.10"
authors = [
{name = "Sanjay Joshi", email = "[email protected]"},
]
maintainers = [
{name = "Sanjay Joshi", email = "[email protected]"},
]
description = "Reliable Statistics"
readme = "README.rst"
license = {text = "MIT License"}
keywords = ["statistics", "reliability", "confidence", "assurance", "percentile"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.urls]
Homepage = "https://github.com/sanjaymjoshi/relistats"
Documentation = "https://relistats.readthedocs.io/en/latest/"
Repository = "https://github.com/sanjaymjoshi/relistats"
"Bug Tracker" = "https://github.com/sanjaymjoshi/relistats/issues"
Changelog = "https://github.com/sanjaymjoshi/relistats/blob/main/CHANGELOG.md"
[tool.flake8]
ignore = ["E203", "E266", "E501", "W503", "W605"]
max-line-length = 88
max-complexity = 18
select = ["B", "C", "E", "F", "W", "T4"]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.mypy]
files = ["relistats", "test"]
ignore_missing_imports = true
[tool.pytest]
testpaths = "test/"