-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 773 Bytes
/
Copy pathpyproject.toml
File metadata and controls
31 lines (27 loc) · 773 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "network-traffic-classification"
version = "0.1.0"
description = "Research code and utilities for supervised network traffic classification."
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Pritom Kumar Mondal" }
]
dependencies = [
"joblib>=1.3",
"matplotlib>=3.7",
"numpy>=1.23",
"pandas>=1.5",
"scikit-learn>=1.2",
"seaborn>=0.12"
]
[project.urls]
Homepage = "https://github.com/pritom007/Network-Traffic-Classification"
Paper = "https://doi.org/10.1080/09540091.2020.1870437"
[project.scripts]
ntc = "network_traffic_classification.cli:main"
[tool.setuptools.packages.find]
include = ["network_traffic_classification*"]