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
30 lines (28 loc) · 868 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (28 loc) · 868 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='chipwhisperer',
version='5.2.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='coflynn@newae.com',
license='GPLv3',
url='https://www.chipwhisperer.com',
packages=find_packages('software'),
package_dir={'': 'software'},
install_requires=[
'configobj',
'pyserial',
'numpy',
'pyusb',
'scipy',
],
project_urls={
'Documentation': 'https://chipwhisperer.readthedocs.io',
'Source': 'https://github.com/newaetech/chipwhisperer',
'Issue Tracker': 'https://github.com/newaetech/chipwhisperer/issues',
},
python_requires='~=3.4',
)