forked from gutomaia/pyNES
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (37 loc) · 1.26 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from distutils.core import Command
from unittest import TextTestRunner, TestLoader
class TestCommand(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
loader = TestLoader()
suite = loader.discover('pynes/tests', pattern='*_test.py')
TextTestRunner(verbosity=4).run(suite)
setup(
name='pyNES',
version='0.0.2',
description='Python Programming for Nintendo 8bits',
author="Gustavo Maia Neto (Guto Maia)",
author_email="guto@guto.net",
license="GPL3",
packages=find_packages(exclude=["*.tests", "*.tests.*", "examples"]),
scripts=['bin/pynes'],
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/pyNES/',
cmdclass={'test': TestCommand},
test_suite="pynes.tests",
)