2015-03-31 20:14:42 +00:00
|
|
|
__version__ = '0.25.dev0'
|
2008-09-10 02:34:04 +00:00
|
|
|
|
|
|
|
import sys
|
|
|
|
|
2013-10-27 01:41:33 +00:00
|
|
|
py_version = sys.version_info[:2]
|
|
|
|
PY3 = py_version[0] == 3
|
|
|
|
|
|
|
|
if PY3:
|
|
|
|
if py_version < (3, 2):
|
|
|
|
raise RuntimeError('On Python 3, Py65 requires Python 3.2 or later')
|
|
|
|
else:
|
|
|
|
if py_version < (2, 6):
|
|
|
|
raise RuntimeError('On Python 2, Py65 requires Python 2.6 or later')
|
2008-09-10 02:34:04 +00:00
|
|
|
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
DESC = """\
|
2009-06-04 00:03:13 +00:00
|
|
|
Simulate 6502-based microcomputer systems in Python."""
|
2008-09-10 02:34:04 +00:00
|
|
|
|
|
|
|
CLASSIFIERS = [
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Operating System :: POSIX',
|
2014-05-08 21:46:59 +00:00
|
|
|
'Programming Language :: Python',
|
2014-08-29 01:55:41 +00:00
|
|
|
'Programming Language :: Python :: 2',
|
2014-05-08 21:46:59 +00:00
|
|
|
'Programming Language :: Python :: 2.6',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2008-09-10 02:34:04 +00:00
|
|
|
'Programming Language :: Assembly',
|
|
|
|
'Topic :: Software Development :: Assemblers',
|
|
|
|
'Topic :: Software Development :: Disassemblers',
|
|
|
|
'Topic :: Software Development :: Debuggers',
|
|
|
|
'Topic :: Software Development :: Embedded Systems',
|
|
|
|
'Topic :: Software Development :: Interpreters',
|
|
|
|
'Topic :: System :: Emulators',
|
|
|
|
'Topic :: System :: Hardware'
|
2012-11-19 20:44:30 +00:00
|
|
|
]
|
2008-09-10 02:34:04 +00:00
|
|
|
|
2009-06-04 00:42:37 +00:00
|
|
|
setup(
|
2012-11-19 20:44:30 +00:00
|
|
|
name='py65',
|
|
|
|
version=__version__,
|
|
|
|
license='License :: OSI Approved :: BSD License',
|
|
|
|
url='https://github.com/mnaberez/py65',
|
|
|
|
description='6502 microprocessor simulation package',
|
|
|
|
long_description=DESC,
|
|
|
|
classifiers=CLASSIFIERS,
|
|
|
|
author="Mike Naberezny",
|
|
|
|
author_email="mike@naberezny.com",
|
|
|
|
maintainer="Mike Naberezny",
|
|
|
|
maintainer_email="mike@naberezny.com",
|
|
|
|
packages=find_packages(),
|
|
|
|
install_requires=[],
|
|
|
|
extras_require={},
|
|
|
|
tests_require=[],
|
|
|
|
include_package_data=True,
|
|
|
|
zip_safe=False,
|
|
|
|
namespace_packages=['py65'],
|
|
|
|
test_suite="py65.tests",
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': [
|
|
|
|
'py65mon = py65.monitor:main',
|
|
|
|
],
|
|
|
|
},
|
2008-09-10 02:34:04 +00:00
|
|
|
)
|