-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 1.01 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
import os
from setuptools import setup, find_packages
from nesasm import __version__ as VERSION
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'requirements.txt')) as f:
REQUIREMENTS = [line for line in iter(f)]
setup(
name='nesasm',
version=VERSION,
description='NES Assembly Compiler',
author='Gustavo Maia Neto (Guto Maia)',
author_email='[email protected]',
license='GPL3',
packages=find_packages(exclude=['*.tests', '*.tests.*', 'examples']),
scripts=['bin/nesasm'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Programming Language :: Assembly',
'Topic :: Games/Entertainment',
'Topic :: Software Development :: Assemblers',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Compilers',
'Topic :: Software Development :: Embedded Systems',
],
url='http://github.com/gutomaia/nesasm_py/',
install_requires=REQUIREMENTS,
)