From 6b2d5fa31e6a7e1d7e004d3adece8544707475b6 Mon Sep 17 00:00:00 2001 From: ElectronixTM Date: Sun, 30 Mar 2025 20:37:03 +0300 Subject: [PATCH] =?UTF-8?q?chore:=20=D1=82=D0=B5=D0=BF=D0=B5=D1=80=D1=8C?= =?UTF-8?q?=20=D0=BF=D0=B0=D0=BA=D0=B5=D1=82=20=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=20=D1=83=D1=81=D1=82=D0=B0=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20=D0=BA=D0=B0=D0=BA=20=D0=B8=D1=81=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D0=BD=D1=8F=D0=B5=D0=BC=D1=8B=D0=B9=20=D1=81=D0=BA=D1=80=D0=B8?= =?UTF-8?q?=D0=BF=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 7 +++++++ setup.py | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 setup.py diff --git a/pyproject.toml b/pyproject.toml index 08304c1..e09af97 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,3 +5,10 @@ description = "Add your description here" readme = "README.md" requires-python = ">=3.11" dependencies = [] + +[project.scripts] +dp32emu = "main:main" + +[bulild-system] +requires = ["setuptools"] +build-backend = "setuptools.build_meta" diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b908cbe --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +import setuptools + +setuptools.setup()