2017-07-17 17:59:00 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
try:
|
|
|
|
from setuptools import setup
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
with open("README.rst", "r") as fp:
|
|
|
|
long_description = fp.read()
|
|
|
|
|
2017-07-27 06:58:16 +00:00
|
|
|
scripts = ["asmgen.py"]
|
2017-07-17 17:59:00 +00:00
|
|
|
|
2017-07-27 06:58:16 +00:00
|
|
|
setup(name="asmgen",
|
2018-07-02 04:26:04 +00:00
|
|
|
version="2.0",
|
2017-07-17 17:59:00 +00:00
|
|
|
author="Rob McMullen",
|
|
|
|
author_email="feedback@playermissile.com",
|
2017-07-27 06:58:16 +00:00
|
|
|
url="https://github.com/robmcmullen/asmgen",
|
2017-07-17 17:59:00 +00:00
|
|
|
scripts=scripts,
|
2017-07-27 06:58:16 +00:00
|
|
|
description="6502 code generator for Apple ][ and Atari 8-bit",
|
2017-07-17 17:59:00 +00:00
|
|
|
long_description=long_description,
|
|
|
|
license="GPL",
|
|
|
|
classifiers=[
|
2018-07-02 04:26:04 +00:00
|
|
|
"Programming Language :: Python :: 3.6",
|
2017-07-17 17:59:00 +00:00
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: GNU General Public License (GPL)",
|
|
|
|
"Topic :: Software Development :: Libraries",
|
|
|
|
"Topic :: Utilities",
|
|
|
|
],
|
|
|
|
install_requires = [
|
|
|
|
"pypng",
|
|
|
|
"numpy",
|
|
|
|
],
|
|
|
|
)
|