forked from newaetech/chipwhisperer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.08 KB
/
Copy pathsetup.py
File metadata and controls
35 lines (33 loc) · 1.08 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='chipwhisperer',
version='5.4.0',
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',
'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',
)