Skip to content

Commit 6afc654

Browse files
author
Morten Delenk
committed
added setuptools
1 parent f36119d commit 6afc654

File tree

14 files changed

+35
-8
lines changed

14 files changed

+35
-8
lines changed

MANIFEST

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# file GENERATED by distutils, do NOT edit
2+
README
3+
ciafuse.py
4+
exefsfuse.py
5+
ncchfuse.py
6+
romfsfuse.py
7+
setup.py
8+
fuse_3ds/__init__.py
9+
fuse_3ds/aeskeydb.py
10+
fuse_3ds/cia.py
11+
fuse_3ds/crypto.py
12+
fuse_3ds/ncch.py
13+
fuse_3ds/seeddb.py
14+
fuse_3ds/ticket.py
15+
fuse_3ds/tmd.py

fuse_3ds/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
all=["aeskeydb","cia","crypto","ncch","seeddb","ticket","tmd"]
File renamed without changes.

cia.py renamed to fuse_3ds/cia.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import struct
2-
import crypto
3-
import ticket
4-
import tmd
2+
from . import crypto
3+
from . import ticket
4+
from . import tmd
55
import hashlib
66
import sys
77
from Crypto.Cipher import AES

ciafuse.py renamed to fuse_3ds/ciafuse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
import cia
2+
from fuse_3ds import cia
33

44
import logging
55
from errno import ENOENT, EIO
File renamed without changes.
File renamed without changes.

ncch.py renamed to fuse_3ds/ncch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
import struct
3-
import crypto
3+
from . import crypto
44
import hashlib
55
class NCCH:
66
def __init__(self, f,ip):

ncchfuse.py renamed to fuse_3ds/ncchfuse.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env python3
2-
import ncch
2+
from fuse_3ds import ncch
33

44
import logging
55
from errno import ENOENT, EIO
File renamed without changes.

0 commit comments

Comments
 (0)