-
Notifications
You must be signed in to change notification settings - Fork 109
/
setup.py
34 lines (29 loc) · 1.03 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from distutils.core import Command
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
setup(
name='pyNES',
version='0.0.2',
description='Python Programming for Nintendo 8bits',
long_description=long_description,
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/',
)