1
0
mirror of https://github.com/mnaberez/py65.git synced 2025-08-12 22:25:14 +00:00

Prepare 0.3 release.

This commit is contained in:
Mike Naberezny
2009-06-03 17:03:13 -07:00
parent 69e9bdb9d5
commit 10e3c0f0e9

View File

@@ -1,12 +1,5 @@
__revision__ = '$Id$' __revision__ = '$Id$'
import urllib
import urllib2
if not hasattr(urllib2, 'splituser'):
# setuptools wants to import this from urllib2 but it's not
# in there in Python 2.3.3, so we just alias it.
urllib2.splituser = urllib.splituser
from ez_setup import use_setuptools from ez_setup import use_setuptools
use_setuptools() use_setuptools()
@@ -26,8 +19,7 @@ from setuptools import setup, find_packages
here = os.path.abspath(os.path.normpath(os.path.dirname(__file__))) here = os.path.abspath(os.path.normpath(os.path.dirname(__file__)))
DESC = """\ DESC = """\
Py65 is a simulation of the original NMOS 6502 microprocessor Simulate 6502-based microcomputer systems in Python."""
from MOS Technology, written in Python. """
CLASSIFIERS = [ CLASSIFIERS = [
'Development Status :: 3 - Alpha', 'Development Status :: 3 - Alpha',
@@ -52,8 +44,8 @@ dist = setup(
name = 'py65', name = 'py65',
version = py65_version, version = py65_version,
license = 'License :: OSI Approved :: BSD License', license = 'License :: OSI Approved :: BSD License',
url = '', url = 'http://github.com/mnaberez/py65',
download_url = '', download_url = 'http://github.com/mnaberez/py65/downloads',
description = '6502 microprocessor simulation package', description = '6502 microprocessor simulation package',
long_description= DESC, long_description= DESC,
classifiers = CLASSIFIERS, classifiers = CLASSIFIERS,
@@ -66,7 +58,7 @@ dist = setup(
# put data files in egg 'doc' dir # put data files in egg 'doc' dir
data_files=[ ('doc', [ data_files=[ ('doc', [
'CHANGES', 'CHANGES',
'README', 'README.markdown',
'TODO', 'TODO',
] ]
)], )],