forked from mnaberez/py65
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
60 lines (54 loc) · 1.73 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
__version__ = '0.17-dev'
import os
import sys
if sys.version_info[:2] < (2, 6):
msg = ("Py65 requires Python 2.6 or later, you are attempting to "
"install it using version %s. Please install with a "
"supported version" % sys.version)
sys.stderr.write(msg)
sys.exit(1)
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
DESC = """\
Simulate 6502-based microcomputer systems in Python."""
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: POSIX',
'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'
]
setup(
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',
],
},
)