From b016d2b55c16d1d7303cd93d5a9a3e2362a9fb58 Mon Sep 17 00:00:00 2001 From: dusoleil Date: Thu, 23 Feb 2023 05:24:29 -0500 Subject: Update project's build and package to the newer standard Currently, the standard way to build and package a Python project is through a pyproject.toml file rather than the old setup.py. This is also build back-end agnostic and we can choose to use something other than setuptools. After looking through a few options, I've decided to use hatchling. Signed-off-by: dusoleil Reviewed-by: Malfurious --- setup.py | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py deleted file mode 100644 index 046c523..0000000 --- a/setup.py +++ /dev/null @@ -1,7 +0,0 @@ -from setuptools import setup, find_packages -setup( - name='sploit', - version='0.1', - packages=find_packages(), - entry_points={"console_scripts":["sploit=sploit.main:main"]} - ) -- cgit v1.2.3