-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.78 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
# Copyright (C) 2019-2023 Ruhr West University of Applied Sciences, Bottrop, Germany
# AND e:fs TechHub GmbH, Gaimersheim Germany
#
# This Source Code Form is subject to the terms of the Apache License 2.0
# If a copy of the APL2 was not distributed with this
# file, You can obtain one at https://www.apache.org/licenses/LICENSE-2.0.txt.
[build-system]
requires = ['setuptools']
build-backend = "setuptools.build_meta"
[project]
name = "netcal"
description = "The net:cal calibration framework is a Python 3 library for measuring and mitigating miscalibration of uncertainty estimates, e.g., by a neural network."
requires-python = ">=3.6"
authors = [
{email = "fabian.kueppers@efs-techhub.com"},
{name = "Fabian Küppers"}
]
maintainers = [
{email = "fabian.kueppers@efs-techhub.com"},
{name = "Fabian Küppers"}
]
keywords = [
"netcal",
"calibration",
"uncertainty",
"neural",
"network",
"confidence",
"classification",
"object",
"detection",
"regression"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/EFS-OpenSource/calibration-framework"
Documentation = "https://efs-opensource.github.io/calibration-framework"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "Apache-2.0"
[tool.setuptools.packages.find]
exclude = ["img"]
[tool.setuptools.dynamic]
version = {attr = "netcal.__version__"}
dependencies = {file = ["requirements.txt"]}