-
Notifications
You must be signed in to change notification settings - Fork 38
/
pyproject.toml
55 lines (49 loc) · 1.32 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
[tool.poetry]
name = "networkml"
version = "0.7.0"
description = "Machine Learning model for use in determining device classes based on packet headers."
authors = ["Ryan <rashley@iqt.org>"]
license = "Apache 2.0"
include = [
"networkml/trained_models/*.*",
"networkml/*.py",
]
[tool.poetry.dependencies]
python = ">=3.8 <3.11"
cython = "0.29.32"
humanize = "4.4.0"
joblib = "1.2.0"
netaddr = "0.8.0"
numpy = "1.23.5"
pandas = "1.5.2"
pyshark = "0.5.3"
scikit-learn = "1.2.0"
scipy = "1.9.3"
#optional dependencies
pygments = { version = "2.13.0", optional = true }
pytest = { version = "7.2.0", optional = true }
pytest-cov = { version = "4.0.0", optional = true }
pytest-xdist = { version = "3.1.0", optional = true }
pytest-rabbitmq = { version = "2.2.1", optional = true }
nest_asyncio = { version = "1.5.6", optional = true }
MarkupSafe = { version = "2.1.1", optional = true }
notebook = { version = "6.5.2", optional = true }
pytype = { version = "2022.11.29", optional = true }
[tool.poetry.extras]
test = [
"pygments",
"pytest",
"pytest-cov",
"pytest-xdist",
"pytest-rabbitmq",
"nest_asyncio",
"MarkupSafe",
"notebook",
"pytype",
]
[tool.poetry.dev-dependencies]
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
networkml = 'networkml.__main__:main'