aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
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(),