-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
74 lines (69 loc) · 1.7 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
65
66
67
68
69
70
71
72
73
74
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cesnet-datazoo"
version = "0.1.10"
authors = [
{name = "Jan Luxemburk", email = "[email protected]"},
{name = "Karel Hynek", email = "[email protected]"},
]
maintainers = [
{name = "Jan Luxemburk", email = "[email protected]"},
{name = "Karel Hynek", email = "[email protected]"},
]
description = "A toolkit for large network traffic datasets"
readme = "README.md"
license = {text = "BSD-3-Clause"}
keywords = [
"traffic classification",
"datasets",
"machine learning"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"cesnet_models",
"matplotlib",
"numpy<2.0",
"pandas",
"pydantic>=2.0,<=2.8.2",
"PyYAML",
"requests",
"scikit-learn",
"seaborn",
"tables>=3.8.0,<=3.9.2",
"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"]