aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyecsca/__init__.py0
-rw-r--r--setup.py4
2 files changed, 2 insertions, 2 deletions
diff --git a/pyecsca/__init__.py b/pyecsca/__init__.py
deleted file mode 100644
index e69de29..0000000
--- a/pyecsca/__init__.py
+++ /dev/null
diff --git a/setup.py b/setup.py
index 20268bb..f0e47c5 100644
--- a/setup.py
+++ b/setup.py
@@ -1,12 +1,12 @@
#!/usr/bin/env python3
-from setuptools import setup
+from setuptools import setup, find_namespace_packages
setup(
name='pyecsca',
author='Jan Jancar',
author_email='johny@neuromancer.sk',
version='0.1.0',
- packages=['pyecsca'],
+ packages=find_namespace_packages(include=["pyecsca.*"]),
license="MIT",
description="Python Elliptic Curve cryptography Side Channel Analysis toolkit.",
long_description=open("README.md").read(),