From 1b536488ad4b835fa74dad4720888fc7f688e1ee Mon Sep 17 00:00:00 2001 From: "Remi GASCOU (Podalirius)" <79218792+p0dalirius@users.noreply.github.com> Date: Sun, 2 Jun 2024 19:41:08 +0200 Subject: [PATCH] Removed tests and added console script alias 'smbng' --- pyproject.toml | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8ce3253..222ab96 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ impacket = "^0.10.0" [tool.poetry.scripts] smbclientng="smbclientng.__main__:main" +smbng="smbclientng.__main__:main" [build-system] requires = ["poetry-core>=1.0.0"] diff --git a/setup.py b/setup.py index 62c8646..ce9e968 100644 --- a/setup.py +++ b/setup.py @@ -113,7 +113,7 @@ long_description=long_description, long_description_content_type="text/markdown", author_email="podalirius@protonmail.com", - packages=["smbclientng", "smbclientng.core", "smbclientng.modules", "smbclientng.tests"], + packages=["smbclientng", "smbclientng.core", "smbclientng.modules"], package_data={'smbclientng': ['smbclientng/']}, include_package_data=True, license="GPL3",