Metadata-Version: 2.1
Name: pyntendo
Version: 0.0.2
Summary: A Nintendo Entertainment System (NES) emulator in Python and Cython
Home-page: https://github.com/jameskmurphy/nes
Author: James Murphy
Author-email: jkmurphy314@gmail.com
License: UNKNOWN
Description: # Pyntendo
        
            pip install pyntendo
        
        A Nintendo Entertainment System (NES) emulator written in Python and Cython.  Currently in development.  All
        core components are implemented, although several important mappers are still to do and known bugs remain (along
        with lots of unknown ones!).
        
        With huge thanks to everyone who contributed to the amazing [NESDev Wiki](wiki.nesdev.com) and all the other fantastic
        sources, tests and forums for NES emulator development and 6502 progamming.
        
        ### Screenshots
        
        Super Mario Brothers:
        
        ![Mario](/img/mario.png)
        
        Donkey Kong:
        
        ![DonkeyKong](/img/donkeykong.png)
        
        MegaMan:
        
        ![MegaMan](/img/megaman.png)
        
        ### Usage
        
        Basic usage:
        
            from nes import NES
            nes = NES("my_rom.nes")
            nes.run()
        
        
        ### Dependencies
        
        Depends on the following libraries for key functionality:
        * pygame
          * timing
          * rendering
          * input
        * pyaudio
          * audio playing
          * sync to audio
        * (pyopengl)
          * OpenGL rendering
          * (not essential; can use SDL rendering via pygame)
        
        
        ### Development Notes
        
        Development notes, including current known errors and todo lists (i.e. unimplemented features)
        are [here](devnotes.md).
        
        
        ### License
        
        Distributed under the MIT License (see [here](LICENSE))
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
