-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·38 lines (36 loc) · 1.17 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright © 2018 Taylor C. Richberger <[email protected]>
# This code is released under the license described in the LICENSE file
from setuptools import setup
setup(
name='png2chr',
version='0.1.0',
description='Simple two-file library to convert between a 4-index PNG file and NES CHR file',
author='Taylor C. Richberger <[email protected]>',
author_email='[email protected]',
url='https://github.com/Taywee/png2chr',
license='GPL3',
entry_points={
'console_scripts': [
'png2chr = png2chr:main',
'chr2png = chr2png:main',
]
},
py_modules=[
'png2chr',
'chr2png',
],
install_requires=[
'pypng',
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development :: Embedded Systems',
],
)