A simple distutils wrapper to make ophis a standalone program on a system.

This commit is contained in:
Michael C. Martin 2012-05-06 18:20:47 -07:00
parent 579747fc43
commit d5ec7bdacd
2 changed files with 11 additions and 0 deletions

11
src/setup.py Normal file
View File

@ -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'])