-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (68 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
73 lines (68 loc) · 1.65 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cesnet-datazoo"
version = "0.2.0"
authors = [
{name = "Jan Luxemburk", email = "luxemburk@cesnet.cz"},
{name = "Karel Hynek", email = "hynekkar@cesnet.cz"},
]
maintainers = [
{name = "Jan Luxemburk", email = "luxemburk@cesnet.cz"},
{name = "Karel Hynek", email = "hynekkar@cesnet.cz"},
]
description = "A toolkit for large network traffic datasets"
readme = "README.md"
license = "BSD-3-Clause"
keywords = [
"traffic classification",
"datasets",
"machine learning"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"cesnet_models",
"matplotlib",
"numpy",
"pandas",
"pydantic >=2.0, !=2.9.*, <2.12.0",
"PyYAML",
"requests",
"scikit-learn",
"seaborn",
"tables >=3.10.0",
"torch>=1.10",
"tqdm",
]
[project.optional-dependencies]
dev = [
"build",
"mkdocs-autorefs",
"mkdocs-material-extensions",
"mkdocs-material",
"mkdocs",
"mkdocstrings-python",
"mkdocstrings",
"twine",
]
[project.urls]
"Homepage" = "https://github.com/CESNET/cesnet-datazoo"
"Documentation" = "https://cesnet.github.io/cesnet-datazoo/"
"Bug Tracker" = "https://github.com/CESNET/cesnet-datazoo/issues"
[tool.setuptools]
packages = [
"cesnet_datazoo",
"cesnet_datazoo.datasets",
"cesnet_datazoo.datasets.metadata",
"cesnet_datazoo.metrics",
"cesnet_datazoo.pytables_data",
"cesnet_datazoo.utils",
]
[tool.setuptools.package-data]
cesnet_datazoo = ["datasets/metadata/metadata.csv"]