-
Notifications
You must be signed in to change notification settings - Fork 227
/
setup.py
22 lines (18 loc) · 940 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup, Extension
packages= ['rfidiot']
scripts = ['cardselect.py', 'ChAP.py', 'copytag.py', 'demotag.py',
'eeprom.py', 'fdxbnum.py', 'formatmifare1kvalue.py', 'froschtest.py', 'hidprox.py', 'hitag2brute.py',
'hitag2reset.py', 'isotype.py', 'jcopmifare.py', 'jcopsetatrhist.py', 'jcoptool.py',
'lfxtype.py', 'loginall.py', 'mifarekeys.py', 'mrpkey.py', 'multiselect.py', 'pn532emulate.py',
'pn532mitm.py', 'q5reset.py', 'readlfx.py', 'readmifare1k.py',
'readmifaresimple.py', 'readmifareultra.py', 'readtag.py', 'rfidiot-cli.py', 'send_apdu.py', 'sod.py', 'transit.py',
'unique.py', 'writelfx.py', 'writemifare1k.py', 'testacg.sh', 'testlahf.sh'
]
setup (name = 'rfidiot',
version = '1.0',
description = "RFID IO tools",
author = 'Adam Laurie',
author_email = '[email protected]',
packages= packages,
scripts = scripts
)