|
| 1 | +# Copyright (C) 2024 Mandiant, Inc. All Rights Reserved. |
| 2 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | +# you may not use this file except in compliance with the License. |
| 4 | +# You may obtain a copy of the License at: [package root]/LICENSE.txt |
| 5 | +# Unless required by applicable law or agreed to in writing, software distributed under the License |
| 6 | +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 7 | +# See the License for the specific language governing permissions and limitations under the License. |
| 8 | + |
| 9 | +[build-system] |
| 10 | +requires = ["setuptools", "setuptools-scm"] |
| 11 | +build-backend = "setuptools.build_meta" |
| 12 | + |
| 13 | +[project] |
| 14 | +name = "flare-floss" |
| 15 | +description = "FLARE Obfuscated String Solver" |
| 16 | +license = {file = "LICENSE.txt"} |
| 17 | +authors = [ |
| 18 | + {name = "Willi Ballenthin", email = "william.ballenthin@mandiant.com"}, |
| 19 | + {name = "Moritz Raabe", email = "moritz.raabe@mandiant.com"}, |
| 20 | +] |
| 21 | +requires-python=">=3.8" |
| 22 | +keywords = ["floss", "malware", "analysis", "obfuscation", "strings", "FLARE"] |
| 23 | +classifiers = [ |
| 24 | + "Development Status :: 5 - Production/Stable", |
| 25 | + "Intended Audience :: Developers", |
| 26 | + "Intended Audience :: Information Technology", |
| 27 | + "License :: OSI Approved :: Apache Software License", |
| 28 | + "Natural Language :: English", |
| 29 | + "Programming Language :: Python :: 3", |
| 30 | + "Topic :: Security", |
| 31 | +] |
| 32 | + |
| 33 | +dependencies = [ |
| 34 | + "tabulate==0.9.0", |
| 35 | + "vivisect==1.1.1", |
| 36 | + "viv-utils[flirt]==0.7.9", |
| 37 | + "pydantic==1.10.9", |
| 38 | + "tqdm==4.65.0", |
| 39 | + "networkx==3.1", |
| 40 | + "halo==0.0.31", |
| 41 | + "rich==13.4.2", |
| 42 | + "pefile>=2022.5.30", |
| 43 | + "binary2strings==0.1.13", |
| 44 | +] |
| 45 | +dynamic = ["version", "readme"] |
| 46 | + |
| 47 | +[tool.setuptools.dynamic] |
| 48 | +version = {attr = "floss.version.__version__"} |
| 49 | +readme = {file = "README.md"} |
| 50 | + |
| 51 | +[tool.setuptools] |
| 52 | +packages = ["floss", "floss.sigs"] |
| 53 | + |
| 54 | +[project.optional-dependencies] |
| 55 | +dev = [ |
| 56 | + "pre-commit==3.5.0", |
| 57 | + "pyyaml==6.0.1", |
| 58 | + "pytest==8.0.2", |
| 59 | + "pytest-sugar==0.9.4", |
| 60 | + "pytest-instafail==0.5.0", |
| 61 | + "pytest-cov==4.1.0", |
| 62 | + "pycodestyle==2.11.1", |
| 63 | + "black==23.12.1", |
| 64 | + "isort==5.13.2", |
| 65 | + "mypy==1.8.0", |
| 66 | + # type stubs for mypy |
| 67 | + "types-PyYAML==6.0.10", |
| 68 | + "types-tabulate==0.9.0.20240106", |
| 69 | +] |
| 70 | +build = [ |
| 71 | + "pyinstaller==6.3.0", |
| 72 | + "setuptools==69.1.1", |
| 73 | + "build==1.0.3" |
| 74 | +] |
| 75 | + |
| 76 | + |
| 77 | +[project.urls] |
| 78 | +Homepage = "https://www.github.com/mandiant/flare-floss" |
| 79 | +Repository = "https://www.github.com/mandiant/flare-floss.git" |
| 80 | +Documentation = "https://github.com/mandiant/flare-floss/tree/master/doc" |
| 81 | +Signatures = "https://github.com/mandiant/flare-floss/tree/master/floss/sigs" |
| 82 | + |
| 83 | +[project.scripts] |
| 84 | +floss = "floss.main:main" |
0 commit comments