Skip to content

Commit

Permalink
added setuptools
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Delenk committed May 15, 2017
1 parent f36119d commit 6afc654
Show file tree
Hide file tree
Showing 14 changed files with 35 additions and 8 deletions.
15 changes: 15 additions & 0 deletions MANIFEST
@@ -0,0 +1,15 @@
# file GENERATED by distutils, do NOT edit
README
ciafuse.py
exefsfuse.py
ncchfuse.py
romfsfuse.py
setup.py
fuse_3ds/__init__.py
fuse_3ds/aeskeydb.py
fuse_3ds/cia.py
fuse_3ds/crypto.py
fuse_3ds/ncch.py
fuse_3ds/seeddb.py
fuse_3ds/ticket.py
fuse_3ds/tmd.py
1 change: 1 addition & 0 deletions fuse_3ds/__init__.py
@@ -0,0 +1 @@
all=["aeskeydb","cia","crypto","ncch","seeddb","ticket","tmd"]
File renamed without changes.
6 changes: 3 additions & 3 deletions cia.py → fuse_3ds/cia.py
@@ -1,7 +1,7 @@
import struct
import crypto
import ticket
import tmd
from . import crypto
from . import ticket
from . import tmd
import hashlib
import sys
from Crypto.Cipher import AES
Expand Down
2 changes: 1 addition & 1 deletion ciafuse.py → fuse_3ds/ciafuse.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
import cia
from fuse_3ds import cia

import logging
from errno import ENOENT, EIO
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ncch.py → fuse_3ds/ncch.py
@@ -1,6 +1,6 @@

import struct
import crypto
from . import crypto
import hashlib
class NCCH:
def __init__(self, f,ip):
Expand Down
2 changes: 1 addition & 1 deletion ncchfuse.py → fuse_3ds/ncchfuse.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python3
import ncch
from fuse_3ds import ncch

import logging
from errno import ENOENT, EIO
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions ticket.py → fuse_3ds/ticket.py
@@ -1,6 +1,6 @@
import struct
import crypto
import aeskeydb
from . import crypto
from . import aeskeydb
class Ticket:
def __init__(self, f, ip):
self.ip = ip
Expand Down
File renamed without changes.
11 changes: 11 additions & 0 deletions setup.py
@@ -0,0 +1,11 @@
#!/usr/bin/env python3
from setuptools import setup
setup(name="3ds-fuse",
version="0.1",
description="FUSE filesystems for different 3DS file types",
author="Morten Delenk",
author_email="morten@dark32.cf",
packages=["fuse_3ds"],
scripts=["fuse_3ds/ciafuse.py","fuse_3ds/exefsfuse.py","fuse_3ds/ncchfuse.py","fuse_3ds/romfsfuse.py"],
install_requires=["fusepy","pycryptodome"])

0 comments on commit 6afc654

Please sign in to comment.