diff options
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2c20737 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python3 +from setuptools import setup + +setup( + name='pyecsca', + author='Jan Jancar', + author_email='johny@neuromancer.sk', + version='0.1.0', + packages=['pyecsca'], + license="MIT license", + description="Python Elliptic Curve cryptography Side Channel Analysis toolkit.", + long_description=open("README.md").read(), + install_requires=[ + "numpy", + "scipy", + "atpublic", + "matplotlib", + "fastdtw" + ], + tests_require=[ + "nose2", + "green" + ] +) |
