-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
74 lines (67 loc) · 2.25 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>=62.0.0" ]
build-backend = "setuptools.build_meta"
[project]
name = "heifip"
version = "1.1.1"
authors = [
{ name="Stefan Machmeier", email="[email protected]" },
]
description = "A tool to convert network traffic into images for ML use cases."
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.7"
keywords = [ "network" ]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Operating System :: OS Independent",
"Operating System :: OS Independent",
'Intended Audience :: Telecommunications Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Security',
'Topic :: Internet :: Log Analysis',
'Topic :: System :: Networking :: Monitoring',
'Topic :: Scientific/Engineering :: Artificial Intelligence'
]
[project.scripts]
fip = "heifip.cli:cli"
[project.urls]
"Homepage" = "https://github.com/stefanDeveloper/heiFIP"
"Bug Tracker" = "https://github.com/stefanDeveloper/heiFIP/issues"
[tool.setuptools.packages.find]
include = [
"heifip*",
]
exclude = [
"test*",
"assets*",
]
[tool.poetry]
name = "heiFIP"
version = "1.1.1"
description = "A tool to convert network traffic into images for ML use cases."
license = "EUPL-1.2"
authors = ["Stefan Machmeier"]
[tool.poetry.dependencies]
scapy = '>=2.5.0'
Pillow = '>=9.4.0'
numpy = '>=1.19.5'
click = '>=8.1.3'
tqdm = '>=4.64.1'
click-help-colors = '>=0.9.1'
pytest = '>=7.2.2'
cryptography = '>=1.0.0'
[[tool.poetry_bumpversion.replacements]]
files = ["heifip/__init__.py", "heifip/exceptions/__init__.py", "heifip/images/__init__.py", "heifip/layers/__init__.py", "heifip/plugins/__init__.py", "heifip/protocols/__init__.py"]
search = '__version__ = "{current_version}"'
replace = '__version__ = "{new_version}"'