Skip to content

Commit 6f32ce4

Browse files
committed
more package installation changes
1 parent 33e6ec8 commit 6f32ce4

File tree

7 files changed

+6
-4
lines changed

7 files changed

+6
-4
lines changed

CHANGES

+2
Original file line numberDiff line numberDiff line change
@@ -238,3 +238,5 @@ add libnfc mifare command support (TODO: error handling)
238238
they should work as READER_LIBNFC and/or READER_PCSC types.
239239
Android support [Nick von Dadelszen]
240240

241+
v1.0e
242+
move to a package style implementation
File renamed without changes.
File renamed without changes.

iso3166.py RFIDIOt/iso3166.py

File renamed without changes.
File renamed without changes.

rfidiot/pynfc.py RFIDIOt/pynfc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import logging
3232
import time
3333
import readline
34-
import RFIDIOtconfig
34+
#import RFIDIOtconfig
3535

3636
# nfc_property enumeration
3737
NP_TIMEOUT_COMMAND = 0x00

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
from distutils.core import setup, Extension
22

3-
packages= ['rfidiot']
3+
packages= ['RFIDIOt']
44

55
scripts = ['cardselect.py', 'ChAP.py', 'copytag.py', 'demotag.py',
66
'eeprom.py', 'fdxbnum.py', 'formatmifare1kvalue.py', 'froschtest.py', 'hidprox.py', 'hitag2brute.py',
7-
'hitag2reset.py', 'iso3166.py', 'isotype.py', 'jcopmifare.py', 'jcopsetatrhist.py', 'jcoptool.py',
7+
'hitag2reset.py', 'isotype.py', 'jcopmifare.py', 'jcopsetatrhist.py', 'jcoptool.py',
88
'lfxtype.py', 'loginall.py', 'mifarekeys.py', 'mrpkey.py', 'multiselect.py', 'pn532emulate.py',
99
'pn532mitm.py', 'pn532.py', 'q5reset.py', 'readlfx.py', 'readmifare1k.py',
1010
'readmifaresimple.py', 'readmifareultra.py', 'readtag.py', 'send_apdu.py', 'sod.py', 'transit.py',
1111
'unique.py', 'writelfx.py', 'writemifare1k.py', 'testacg.sh', 'testlahf.sh'
1212
]
1313

14-
setup (name = 'rfidiot',
14+
setup (name = 'RFIDIOt',
1515
version = '1.0',
1616
description = "RFID IO tools",
1717
author = 'Adam Laurie',

0 commit comments

Comments
 (0)