-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (29 loc) · 930 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
#!/usr/bin/env python
from setuptools import setup, find_packages
__version__ = '5.7.0'
with open('chipwhisperer/version.py') as f:
exec(f.read())
setup(
name='chipwhisperer',
version=__version__,
description='ChipWhisperer Side-Channel Analysis Tool',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='NewAE Technology Inc',
author_email='[email protected]',
license='apache',
url='https://www.chipwhisperer.com',
packages=find_packages('.'),
package_dir={'': '.'},
install_requires=[
'pyserial',
'libusb1',
'Cython',
],
project_urls={
'Documentation': 'https://chipwhisperer.readthedocs.io',
'Source': 'https://github.com/newaetech/chipwhisperer-minimal',
'Issue Tracker': 'https://github.com/newaetech/chipwhisperer-minimal/issues',
},
python_requires='~=3.7',
)