#!/usr/bin/env python3 import platform import sys from setuptools import setup, find_packages, Extension if sys.hexversion < 0x030601f0: sys.exit('Python 3.6.1+ is required.') with open('README.md', 'r', encoding='utf-8') as f: readme = f.read() if sys.platform == 'darwin': libcrypto = ['libcrypto.1.1.dylib'] elif sys.platform == 'win32': if platform.architecture()[0] == '32bit': libcrypto = ['libcrypto-1_1.dll'] else: libcrypto = ['libcrypto-1_1-x64.dll'] else: libcrypto = [] setup( name='ninfs', version='1.7b2', packages=find_packages(), url='https://github.com/ihaveamac/ninfs', license='MIT', author='Ian Burgwin', author_email='ian@ianburgwin.net', description='FUSE filesystem Python scripts for Nintendo console files', long_description=readme, long_description_content_type='text/markdown', package_data={'ninfs': ['data/*.png', 'data/*.ico'], 'ninfs.hac': ['openssl-license.txt'] + libcrypto}, classifiers=[ 'Topic :: Utilities', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', ], install_requires=['pycryptodomex'], # fusepy should be added here once the main repo has a new release with Windows support. extras_require={'gui': ['appJar>=0.93']}, entry_points={'console_scripts': ['ninfs = ninfs.main:gui', # not putting in gui_scripts since the cmd window is required and trying to # remove it breaks some other stuff with subprocess management ?!? 'mount_cci = ninfs.main:main', 'mount_cdn = ninfs.main:main', 'mount_cia = ninfs.main:main', 'mount_exefs = ninfs.main:main', 'mount_nandctr = ninfs.main:main', 'mount_nandtwl = ninfs.main:main', 'mount_nandhac = ninfs.main:main', 'mount_ncch = ninfs.main:main', 'mount_romfs = ninfs.main:main', 'mount_sd = ninfs.main:main', 'mount_srl = ninfs.main:main', 'mount_threedsx = ninfs.main:main', 'mount_titledir = ninfs.main:main', # aliases 'mount_3ds = ninfs.main:main', 'mount_3dsx = ninfs.main:main', 'mount_app = ninfs.main:main', 'mount_csu = ninfs.main:main', 'mount_cxi = ninfs.main:main', 'mount_cfa = ninfs.main:main', 'mount_nand = ninfs.main:main', 'mount_nanddsi = ninfs.main:main', 'mount_nandswitch = ninfs.main:main', 'mount_nds = ninfs.main:main']}, ext_modules=[Extension('ninfs.hac._crypto', sources=['ninfs/hac/_crypto.cpp', 'ninfs/hac/aes.cpp'], extra_compile_args=['/Ox' if sys.platform == 'win32' else '-O3', '' if sys.platform == 'win32' else '-std=c++11'])] )