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 * 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 @@ + 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() +)