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
|
[tool.poetry]
name = "fierce"
version = "1.6.0"
description = "A DNS reconnaissance tool for locating non-contiguous IP space."
authors = []
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/mschwager/fierce"
homepage = "https://github.com/mschwager/fierce"
packages = [{include = "fierce"}]
classifiers = [
'Environment :: Console',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Security',
]
[tool.poetry.dependencies]
python = "^3.8.1"
dnspython = "1.16.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
pytest-cov = "^5.0.0"
flake8 = "^7.1.0"
pyfakefs = "^5.6.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.scripts]
fierce = "fierce.fierce:main"
[tool.coverage.run]
source = ["fierce"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|