-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (29 loc) · 941 Bytes
/
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
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="[email protected]",
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",
],
)