-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (38 loc) · 1.11 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["cp_utils"]
[project]
name = "conformal-prediction"
version = "0.0.1"
description = "Playground for conformal prediction"
readme = "README.md"
requires-python = ">=3.12"
license = "MIT"
authors = [
{name = "Joseph Nagel", email = "JosephBNagel@gmail.com"}
]
keywords = ["uncertainty quantification", "conformal prediction"]
dependencies = [
"numpy",
"scikit-learn",
"mapie",
"matplotlib",
"notebook"
]
[project.optional-dependencies]
dev = ["mypy", "ruff"]
[project.urls]
source = "https://github.com/joseph-nagel/conformal-prediction"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.lint]
extend-select = ["E501"] # include line-length violations that would be ignored otherwise (handled by formatter)
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] # ignore unused imports in __init__.py
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false # do not collapse multi-line collections with a trailing comma into a single line