|
| 1 | +[tool.poetry] |
| 2 | +name = "boofuzz" |
| 3 | +version = "0.4.1" |
| 4 | +description = "A fork and successor of the Sulley Fuzzing Framework" |
| 5 | +authors = ["Joshua Pereyda <joshua.t.pereyda@gmail.com>"] |
| 6 | +license = "GPL-2.0-only" |
| 7 | +readme = ["README.rst", "CHANGELOG.rst"] |
| 8 | +repository = "https://github.com/jtpereyda/boofuzz" |
| 9 | +documentation = "https://boofuzz.readthedocs.io/" |
| 10 | +keywords = ["security", "fuzzing"] |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 4 - Beta", |
| 13 | + "Environment :: Console", |
| 14 | + "Environment :: Console :: Curses", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "Intended Audience :: Science/Research", |
| 17 | + "Natural Language :: English", |
| 18 | + "Operating System :: OS Independent", |
| 19 | + "Topic :: Security", |
| 20 | + "Topic :: System :: Networking", |
| 21 | + "Topic :: Software Development :: Testing :: Traffic Generation", |
| 22 | +] |
| 23 | + |
| 24 | +include = [ |
| 25 | + { path = "*.py", format = "sdist" }, |
| 26 | + { path = "*.rst", format = "sdist" }, |
| 27 | + { path = "*.toml", format = "sdist" }, |
| 28 | + { path = "*.txt", format = "sdist" }, |
| 29 | + { path = "tox.ini", format = "sdist" }, |
| 30 | + { path = "_static", format = "sdist" }, |
| 31 | + { path = "artwork", format = "sdist" }, |
| 32 | + { path = "docs", format = "sdist" }, |
| 33 | + { path = "examples", format = "sdist" }, |
| 34 | + { path = "request_definitions", format = "sdist" }, |
| 35 | + { path = "unit_tests", format = "sdist" }, |
| 36 | + { path = "utils", format = "sdist" }, |
| 37 | +] |
| 38 | + |
| 39 | +[tool.poetry.dependencies] |
| 40 | +attrs = "*" |
| 41 | +click = "*" |
| 42 | +colorama = "*" |
| 43 | +Flask = "*" |
| 44 | +funcy = "*" |
| 45 | +psutil = "*" |
| 46 | +pydot = "*" |
| 47 | +pyserial = "*" |
| 48 | +python = "^3.8" |
| 49 | +tornado = "*" |
| 50 | + |
| 51 | +# dev extras |
| 52 | +black = { version = "*", optional = true } |
| 53 | +flake8 = { version = "*", optional = true } |
| 54 | +ipaddress = { version = "*", optional = true } |
| 55 | +mock = { version = "*", optional = true } |
| 56 | +netifaces = { version = "*", optional = true } |
| 57 | +pytest = { version = "*", optional = true } |
| 58 | +pytest-bdd = { version = "*", optional = true } |
| 59 | +pytest-cov = { version = "*", optional = true } |
| 60 | +tox = { version = "*", optional = true } |
| 61 | +wheel = { version = "*", optional = true } |
| 62 | + |
| 63 | +# docs extras |
| 64 | +pygments = { version = ">=2.4.0", optional = true } |
| 65 | +sphinx = { version = "*", optional = true } |
| 66 | +sphinx_rtd_theme = { version = "*", optional = true } |
| 67 | + |
| 68 | +[tool.poetry.extras] |
| 69 | +dev = [ |
| 70 | + "black", |
| 71 | + "flake8", |
| 72 | + "ipaddress", |
| 73 | + "mock", |
| 74 | + "netifaces", |
| 75 | + "pygments", |
| 76 | + "pytest", |
| 77 | + "pytest-bdd", |
| 78 | + "pytest-cov", |
| 79 | + "sphinx", |
| 80 | + "sphinx_rtd_theme", |
| 81 | + "tox", |
| 82 | + "wheel", |
| 83 | +] |
| 84 | +docs = [ |
| 85 | + "sphinx", |
| 86 | + "sphinx_rtd_theme", |
| 87 | + "pygments", |
| 88 | +] |
| 89 | + |
| 90 | +[tool.poetry.scripts] |
| 91 | +boo = 'boofuzz.cli:main' |
| 92 | + |
| 93 | +[build-system] |
| 94 | +requires = ["poetry-core>=1.0.0"] |
| 95 | +build-backend = "poetry.core.masonry.api" |
| 96 | + |
1 | 97 | [tool.black] |
2 | 98 | line-length = 120 |
| 99 | + |
| 100 | +[tool.pytest.ini_options] |
| 101 | +testpaths = ["unit_tests"] |
| 102 | +filterwarnings = [ |
| 103 | + "ignore:SocketConnection is deprecated:FutureWarning", |
| 104 | +] |
| 105 | + |
| 106 | +[tool.pytype] |
| 107 | +disable = [ |
| 108 | + "import-error", |
| 109 | +] |
| 110 | +exclude = [ |
| 111 | + "**/ida_fuzz_library_extender.py", |
| 112 | + "examples/*.py", |
| 113 | + "**/*_test_*.py", |
| 114 | + "request_definitions/*.py", |
| 115 | + "utils/*.py", |
| 116 | +] |
0 commit comments