Skip to content

Commit

Permalink
Added almost realistic packaging setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Dalgleish (ajd4096) committed Apr 19, 2016
1 parent 552ae03 commit 737f833
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 307 deletions.
307 changes: 0 additions & 307 deletions inject_gba.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 9 additions & 0 deletions inject_gba_cli.py
@@ -0,0 +1,9 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""Convenience wrapper for running inject_gba_cli directly from source tree."""

from inject_gba.inject_gba_app import main_cli

if __name__ == '__main__':
main_cli()
File renamed without changes.
22 changes: 22 additions & 0 deletions setup.py
@@ -0,0 +1,22 @@
from setuptools import setup

setup(
name = 'inject_gba',
version = '0.1',
description = 'Inject GBA roms for Nintendo Wii-U virtual console',
url = 'http://github.com/ajd4096/inject_gba',
author = 'Andrew Dalgleish',
author_email = 'ajd4096@github.com',
license = 'BSD',
packages = ['inject_gba'],
entry_points = {
"console_scripts": [
'inject_gba_cli = inject_gba.inject_gba:main_cli',
'inject_gba_gui = inject_gba.inject_gba:main_gui',
],
},
install_requires = [
'easygui',
'pyyaml',
],
zip_safe = True)
Binary file removed tools/easygui-0.98.0-py3.5.egg
Binary file not shown.

0 comments on commit 737f833

Please sign in to comment.