From c48f24c62273f98257dd81e4ccc7d038be6a0c0d Mon Sep 17 00:00:00 2001 From: hussamkoman <126778201+hussamkoman@users.noreply.github.com> Date: Mon, 12 May 2025 05:36:55 +0200 Subject: [PATCH 1/3] Update setup.py --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1dda2a0..3947379 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,10 @@ """default setup.py file for compatability with older dependency management systems""" -from setuptools import setup +from setuptools import setup, find_packages -setup() +setup( + name="pyjama", + version="0.1a1", + description="PyJama: Differentiable Jamming and Anti-Jamming with NVIDIA Sionna", + author="Ulbricht, Fabian and Marti, Gian and Wiesmayr, Reinhard and Studer, Christoph", + packages=find_packages() +) From 0ea966706bbaf51fee8a589cf29df84d12750ee1 Mon Sep 17 00:00:00 2001 From: hussamkoman <126778201+hussamkoman@users.noreply.github.com> Date: Mon, 12 May 2025 05:38:48 +0200 Subject: [PATCH 2/3] Create __init__.py for mitigation --- pyjama/mitigation/__init__.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 pyjama/mitigation/__init__.py diff --git a/pyjama/mitigation/__init__.py b/pyjama/mitigation/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pyjama/mitigation/__init__.py @@ -0,0 +1 @@ + From ba98cf3f5f38278cd251da7d63d6e9e5212bb816 Mon Sep 17 00:00:00 2001 From: hussamkoman <126778201+hussamkoman@users.noreply.github.com> Date: Mon, 12 May 2025 05:39:28 +0200 Subject: [PATCH 3/3] Create MANIFEST.in --- MANIFEST.in | 1 + 1 file changed, 1 insertion(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..41dc5ec --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +recursive-include pyjama *