From d5ec7bdacd8ff6704055e84bfd5b6c8e9fd11e03 Mon Sep 17 00:00:00 2001 From: "Michael C. Martin" Date: Sun, 6 May 2012 18:20:47 -0700 Subject: [PATCH] A simple distutils wrapper to make ophis a standalone program on a system. --- src/{ophismain.py => scripts/ophis} | 0 src/setup.py | 11 +++++++++++ 2 files changed, 11 insertions(+) rename src/{ophismain.py => scripts/ophis} (100%) create mode 100644 src/setup.py diff --git a/src/ophismain.py b/src/scripts/ophis similarity index 100% rename from src/ophismain.py rename to src/scripts/ophis diff --git a/src/setup.py b/src/setup.py new file mode 100644 index 0000000..b60c09f --- /dev/null +++ b/src/setup.py @@ -0,0 +1,11 @@ +from distutils.core import setup +setup(name='Ophis', + version='1.0.1', + description='A cross-assembler for the 6502 series of processors', + url='https://github.com/michaelcmartin/Ophis', + author="Michael Martin", + author_email="mcmartin@gmail.com", + license="MIT", + long_description="Ophis is a cross-assembler for the 65xx series of chips. It supports the stock 6502 opcodes, the 65c02 extensions, and syntax for the \"undocumented opcodes\" in the 6510 chip used on the Commodore 64. (Syntax for these opcodes matches those given in the VICE team's documentation.)", + packages=['Ophis'], + scripts=['scripts/ophis'])