-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
42 lines (35 loc) · 987 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
41
42
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "inception_reports"
description = "Generate plots that report the progress of an INCEpTION project."
version = "0.6.2"
authors = [
{ name = "Serwar", email = "serwar.basch@tu-darmstadt.de" }
]
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"streamlit",
"pandas",
"plotly",
"numpy",
"dkpro-cassis",
"pycaprio",
"PyYAML",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["inception_reports"]
[tool.setuptools.package-data]
"inception_reports" = ["data/*.json","config/logging_config.yaml"]
[project.scripts]
inception_reports = "inception_reports.__main__:main"
[project.urls]
Homepage = "https://github.com/inception-project/inception-reporting-dashboard"