Skip to content

Commit

Permalink
Fix NameError in setup.py: import sys module for sys.platform usage
Browse files Browse the repository at this point in the history
  • Loading branch information
oldip committed Sep 21, 2024
1 parent b1278bf commit c360126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from distutils.core import Extension

import sys
import setuptools

include_dirs = []
Expand Down Expand Up @@ -40,7 +40,7 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(name="FlipperNested", version="2.3.5", author="AloneLiberty",
setuptools.setup(name="FlipperNested", version="2.3.5", author="AloneLiberty", maintainer="oldip",
description="Recover keys from collected nonces", long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AloneLiberty/FlipperNestedRecovery",
Expand Down

0 comments on commit c360126

Please sign in to comment.