forked from newaetech/chipwhisperer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (34 loc) · 1.11 KB
/
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
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='chipwhisperer',
version='5.5.2',
description="ChipWhisperer Side-Channel Analysis Tool",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Colin O'Flynn",
author_email='coflynn@newae.com',
license='GPLv3',
url='https://www.chipwhisperer.com',
packages=find_packages('software'),
data_files=[('chipwhisperer/hardware/naeusb', ['software/chipwhisperer/hardware/naeusb/libusb-1.0.dll', 'software/chipwhisperer/hardware/naeusb/libusb-master.zip'])],
package_dir={'': 'software'},
install_requires=[
'configobj',
'pyserial',
'numpy',
'pyusb',
'ECpy',
'scipy',
'fastdtw',
'Cython',
'smartleia-target',
'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.6',
)