-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
29 lines (27 loc) · 910 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='phywhisperer',
version='0.1.0',
description="PhyWhisperer USB Hardware Trigger",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="NewAE Technology Inc.",
author_email='[email protected]',
license='GPLv3',
url='http://www.PhyWhisperer.com',
packages=find_packages('software'),
package_dir={'': 'software'},
package_data={'': ['firmware/defines_usb.v', 'firmware/defines_pw.v']},
install_requires=[
'pyserial',
'crcmod',
'pyusb',
],
project_urls={
'Documentation': 'https://phywhispererusb.readthedocs.io',
'Source': 'https://github.com/newaetech/phywhispererusb',
'Issue Tracker': 'https://github.com/newaetech/phywhispererusb/issues',
},
python_requires='>3.4',
)