Created
January 7, 2019 09:53
-
-
Save D3f0/78a8d861149c181c70b7aed9a492277e to your computer and use it in GitHub Desktop.
Poetry Shell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.poetry] | |
name = "pcapfilter" | |
version = "0.1.0" | |
description = "" | |
authors = ["Nahuel Defossé <email@domain>"] | |
[tool.poetry.dependencies] | |
python = "^3.6" | |
scapy = "^2.4" | |
click = "^7.0" | |
pytest-sugar = "^0.9.2" | |
[tool.poetry.dev-dependencies] | |
pytest = "^3.0" | |
pytest-cov = "^2.6" | |
pytest-click = "^0.3.0" | |
pdbpp = "^0.9.3" | |
flake8 = "^3.6" | |
mypy = "^0.650.0" | |
black = {version = "^18.3-alpha.0",allows-prereleases = true} | |
[tool.poetry.scripts] | |
pcapfilter = 'pcapfilter.cli:main' | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment