-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.36 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cesnet-models"
version = "0.4.0"
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 = "Pre-trained neural networks for encrypted traffic classification"
readme = "README.md"
license = {text = "BSD-3-Clause"}
keywords = [
"traffic classification",
"deep learning",
"models"
]
classifiers = [
"Programming Language :: Python :: 3.10",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
requires-python = ">=3.10"
dependencies = [
"numpy<2.0",
"scikit-learn",
"torch>=1.10",
]
[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-models"
"Documentation" = "https://cesnet.github.io/cesnet-models/"
"Bug Tracker" = "https://github.com/CESNET/cesnet-models/issues"
[tool.setuptools]
packages = [
"cesnet_models",
"cesnet_models.architectures",
]