-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (25 loc) · 825 Bytes
/
Copy pathpyproject.toml
File metadata and controls
29 lines (25 loc) · 825 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
[tool.poetry]
name = "async-packet-test"
version = "1.0.0"
description = "Human readable tests for future expected packets."
authors = ["CommitThis <gdavey@committhis.co.uk>"]
license = "GPL-2.0-only"
classifiers = [
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
"Topic :: System :: Networking",
"Framework :: Pytest",
]
readme = "README.md"
repository = "https://github.com/CommitThis/async-packet-test"
documentation = "https://committhis.github.io/async-packet-test/"
homepage = "https://committhis.github.io/async-packet-test/"
[tool.poetry.dependencies]
python = "^3.6"
scapy = "^2.4"
[tool.poetry.dev-dependencies]
pytest = "^4.6"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"