Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .github/workflows/ci.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
__pycache__/
build/
*.egg-info/
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While this change is part of reverting the previous pull request, it's good practice to keep directories like bin/ and tests/samples/ in .gitignore. This prevents accidental commits of build artifacts from bin/ and potentially sensitive malware samples from tests/samples/.

*.egg-info/
bin/
tests/samples/

bin/
tests/samples/
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
requires = [ "setuptools" ]

[project]
name = "rat-king-parser"
Expand Down Expand Up @@ -34,10 +34,10 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dynamic = ["version"]
dependencies = ["dnfile", "pycryptodomex", "yara-python"]
optional-dependencies.dev = ["pre-commit", "pytest"]
optional-dependencies.maco = ["maco", "validators"]
dynamic = [ "version" ]
dependencies = [ "dnfile", "pycryptodomex", "yara-python" ]
optional-dependencies.dev = [ "pre-commit" ]
optional-dependencies.maco = [ "maco", "validators" ]
urls."Bug Reports" = "https://github.com/jeFF0Falltrades/rat_king_parser/issues"
urls."Homepage" = "https://github.com/jeFF0Falltrades/rat_king_parser"
urls."Say Thanks!" = "https://www.buymeacoffee.com/jeff0falltrades"
Expand All @@ -47,15 +47,15 @@ scripts.rat-king-parser = "rat_king_parser:main"
version = { attr = "rat_king_parser._version.__version__" }

[tool.setuptools.packages.find]
where = ["src"]
include = ["rat_king_parser*"]
where = [ "src" ]
include = [ "rat_king_parser*" ]
namespaces = false

[tool.setuptools.package-data]
"rat_king_parser.yara_utils" = ["*.yar", "*.yarc"]
"rat_king_parser.yara_utils" = [ "*.yar", "*.yarc" ]

[tool.ruff]
lint.extend-select = ["I"]
lint.extend-select = [ "I" ]

[tool.pre-commit]
hook-config = "file:.pre-commit-config.yaml"
2 changes: 1 addition & 1 deletion src/rat_king_parser/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
__version__ = "4.2.2"
__version__ = "4.2.1"

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading