mirror of
https://github.com/robmcmullen/asmgen.git
synced 2025-04-19 21:39:15 +00:00
34 lines
941 B
Python
34 lines
941 B
Python
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()
|
|
|
|
scripts = ["asmgen.py"]
|
|
|
|
setup(name="asmgen",
|
|
version="2.2",
|
|
author="Rob McMullen",
|
|
author_email="feedback@playermissile.com",
|
|
url="https://github.com/robmcmullen/asmgen",
|
|
scripts=scripts,
|
|
description="6502 code generator for Apple ][ and Atari 8-bit",
|
|
long_description=long_description,
|
|
license="MPL 2.0",
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3.6",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
|
|
"Topic :: Software Development :: Libraries",
|
|
"Topic :: Utilities",
|
|
],
|
|
install_requires = [
|
|
"pypng",
|
|
"numpy",
|
|
],
|
|
)
|