forked from newaetech/chipwhisperer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 988 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='chipwhisperer',
version='5.6.1',
description="ChipWhisperer Side-Channel Analysis Tool",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Colin O'Flynn",
author_email='[email protected]',
license='GPLv3',
url='https://www.chipwhisperer.com',
packages=find_packages('software'),
package_dir={'': 'software'},
package_data={'': ['py.typed', 'capture/trace/defines/*.v']},
install_requires=[
'configobj',
'pyserial',
'numpy',
'libusb1',
'ECpy',
'fastdtw',
'Cython',
'tqdm',
],
project_urls={
'Documentation': 'https://chipwhisperer.readthedocs.io',
'Source': 'https://github.com/newaetech/chipwhisperer',
'Issue Tracker': 'https://github.com/newaetech/chipwhisperer/issues',
},
python_requires='~=3.7',
)